diff --git a/.gitignore b/.gitignore index 6704566..5eaa9bb 100644 --- a/.gitignore +++ b/.gitignore @@ -102,3 +102,6 @@ dist # TernJS port file .tern-port + +# IDE files +.idea/ diff --git a/src/community/utrecht/action.tokens.json b/src/community/utrecht/action.tokens.json index a27b5da..2303c9e 100644 --- a/src/community/utrecht/action.tokens.json +++ b/src/community/utrecht/action.tokens.json @@ -5,7 +5,14 @@ "cursor": {"value": "pointer"} }, "disabled": { - "cursor": {"value": "not-allowed"} + "cursor": { + "value": "not-allowed" + } + }, + "submit": { + "cursor": { + "value": "pointer" + } } } } diff --git a/src/community/utrecht/button.tokens.json b/src/community/utrecht/button.tokens.json index 786f8e6..349f725 100644 --- a/src/community/utrecht/button.tokens.json +++ b/src/community/utrecht/button.tokens.json @@ -69,6 +69,54 @@ "color": {"value": "{of.button.danger.active.fg}"} } } + }, + + "secondary-action": { + "danger": { + "background": { + "color": { + "value": "{of.color.danger}" + } + }, + "color": { + "value": "#fce9e8" + } + } + }, + + "subtle": { + "danger": { + "background": { + "color": { + "value": "{of.color.danger}" + } + }, + "hover": { + "background": { + "color": { + "value": "{of.color.bg}" + } + } + }, + "active": { + "background": { + "color": { + "value": "#a02017" + } + } + } + } + }, + + "disabled": { + "background": { + "color": { + "value": "#b0b0b0" + } + }, + "color": { + "value": "#ffffff" + } } } }