@grantcodes/style-dictionary 1.1.0 → 1.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (65) hide show
  1. package/.turbo/turbo-build.log +44 -0
  2. package/.turbo/turbo-lint.log +5 -0
  3. package/README.md +37 -0
  4. package/biome.json +9 -0
  5. package/build.js +10 -0
  6. package/config.js +485 -0
  7. package/demo.html +171 -0
  8. package/lib/color-generator.js +13 -0
  9. package/lib/get-style-dictionary-config.js +223 -0
  10. package/lib/get-themes.js +10 -0
  11. package/lib/index.js +3 -0
  12. package/package.json +57 -35
  13. package/tests/tokens.test.js +87 -0
  14. package/tokens/core/tier-1-definitions/colors.json +175 -0
  15. package/tokens/core/tier-1-definitions/z-index.json +29 -0
  16. package/tokens/grantcodes/tier-1-definitions/animation.json +27 -0
  17. package/tokens/grantcodes/tier-1-definitions/borders.json +36 -0
  18. package/tokens/grantcodes/tier-1-definitions/colors.json +35 -0
  19. package/tokens/grantcodes/tier-1-definitions/shadows.json +39 -0
  20. package/tokens/grantcodes/tier-1-definitions/typography.json +133 -0
  21. package/tokens/grantcodes/tier-2-usage/00-colors-background.json +72 -0
  22. package/tokens/grantcodes/tier-2-usage/00-colors-border.json +42 -0
  23. package/tokens/grantcodes/tier-2-usage/00-colors-content.json +45 -0
  24. package/tokens/grantcodes/tier-2-usage/animation.json +23 -0
  25. package/tokens/grantcodes/tier-2-usage/borders.json +26 -0
  26. package/tokens/grantcodes/tier-2-usage/shadows.json +39 -0
  27. package/tokens/grantcodes/tier-2-usage/typography-usage.json +277 -0
  28. package/tokens/grantcodes/tier-3-components/button.json +94 -0
  29. package/tokens/grantcodes/tier-3-components/focus-ring.json +26 -0
  30. package/tokens/grantcodes/tier-3-components/form.json +69 -0
  31. package/tokens/grantcodes/tier-3-components/link.json +39 -0
  32. package/tokens/todomap/tier-1-definitions/colors.json +92 -0
  33. package/tokens/todomap/tier-1-definitions/typography.json +10 -0
  34. package/tokens/todomap/tier-2-usage/00-colors-background.json +36 -0
  35. package/tokens/todomap/tier-2-usage/00-colors-content.json +33 -0
  36. package/tokens/todomap/tier-2-usage/typography-usage.json +20 -0
  37. package/tokens/todomap/tier-3-components/button.json +141 -0
  38. package/tokens/todomap/tier-3-components/focus-ring.json +26 -0
  39. package/tokens/todomap/tier-3-components/form.json +69 -0
  40. package/tokens/todomap/tier-3-components/link.json +39 -0
  41. package/tokens/wireframe/tier-1-definitions/animation.json +18 -0
  42. package/tokens/wireframe/tier-1-definitions/borders.json +42 -0
  43. package/tokens/wireframe/tier-1-definitions/colors.json +36 -0
  44. package/tokens/wireframe/tier-1-definitions/shadows.json +39 -0
  45. package/tokens/wireframe/tier-1-definitions/typography.json +130 -0
  46. package/tokens/wireframe/tier-2-usage/00-colors-background.json +86 -0
  47. package/tokens/wireframe/tier-2-usage/00-colors-border.json +42 -0
  48. package/tokens/wireframe/tier-2-usage/00-colors-content.json +45 -0
  49. package/tokens/wireframe/tier-2-usage/animation.json +24 -0
  50. package/tokens/wireframe/tier-2-usage/borders.json +33 -0
  51. package/tokens/wireframe/tier-2-usage/shadows.json +39 -0
  52. package/tokens/wireframe/tier-2-usage/typography-usage.json +445 -0
  53. package/tokens/wireframe/tier-3-components/button.json +94 -0
  54. package/tokens/wireframe/tier-3-components/focus-ring.json +26 -0
  55. package/tokens/wireframe/tier-3-components/form.json +69 -0
  56. package/tokens/wireframe/tier-3-components/link.json +39 -0
  57. package/.github/workflows/create-release.yml +0 -45
  58. package/.simple-git-hooks.cjs +0 -1
  59. package/commitlint.config.cjs +0 -1
  60. package/dist/css/default/style-dictionary.css +0 -181
  61. package/dist/css/todomap/style-dictionary.css +0 -181
  62. package/dist/js/default/style-dictionary.js +0 -179
  63. package/dist/js/todomap/style-dictionary.js +0 -179
  64. package/dist/scss/default/_style-dictionary.scss +0 -181
  65. package/dist/scss/todomap/_style-dictionary.scss +0 -181
@@ -0,0 +1,94 @@
1
+ {
2
+ "button": {
3
+ "color": {
4
+ "background": {
5
+ "default": {
6
+ "value": "{color.background.brand}"
7
+ },
8
+ "hover": {
9
+ "value": "{color.background.brand-hover}"
10
+ },
11
+ "active": {
12
+ "value": "{color.background.brand-hover}"
13
+ },
14
+ "disabled": {
15
+ "value": "{color.background.default}"
16
+ }
17
+ },
18
+ "content": {
19
+ "default": {
20
+ "value": "{color.content.default}"
21
+ },
22
+ "hover": {
23
+ "value": "{color.content.brand-knockout}"
24
+ },
25
+ "active": {
26
+ "value": "{color.content.brand-knockout}"
27
+ },
28
+ "disabled": {
29
+ "value": "{color.content.disabled}"
30
+ }
31
+ },
32
+ "border": {
33
+ "default": {
34
+ "value": "{color.border.default}"
35
+ },
36
+ "hover": {
37
+ "value": "{color.border.brand}"
38
+ },
39
+ "active": {
40
+ "value": "{color.border.brand}"
41
+ },
42
+ "disabled": {
43
+ "value": "{color.border.default}"
44
+ }
45
+ }
46
+ },
47
+ "primary": {
48
+ "color": {
49
+ "background": {
50
+ "default": {
51
+ "value": "{color.brand.gray.700}"
52
+ },
53
+ "hover": {
54
+ "value": "{color.brand.gray.800}"
55
+ },
56
+ "active": {
57
+ "value": "{color.brand.gray.800}"
58
+ },
59
+ "disabled": {
60
+ "value": "{color.background.brand-disabled}"
61
+ }
62
+ },
63
+ "content": {
64
+ "default": {
65
+ "value": "{color.background.knockout}"
66
+ },
67
+ "hover": {
68
+ "value": "{color.background.knockout}"
69
+ },
70
+ "active": {
71
+ "value": "{color.background.knockout}"
72
+ },
73
+ "disabled": {
74
+ "value": "{color.content.default}"
75
+ }
76
+ },
77
+ "border": {
78
+ "default": {
79
+ "value": "{color.brand.gray.700}"
80
+ },
81
+ "hover": {
82
+ "value": "{color.brand.gray.800}"
83
+ },
84
+ "active": {
85
+ "value": "{color.brand.gray.800}"
86
+ },
87
+ "disabled": {
88
+ "value": "{color.border.default}"
89
+ }
90
+ }
91
+ }
92
+ }
93
+ }
94
+ }
@@ -0,0 +1,26 @@
1
+ {
2
+ "focus-ring": {
3
+ "color": {
4
+ "default": {
5
+ "value": "rgba(0, 0, 0, 0.4)"
6
+ },
7
+ "contrast": {
8
+ "value": "{color.neutral.200}"
9
+ },
10
+ "contrast-shadow": {
11
+ "value": "{color.neutral.800}"
12
+ }
13
+ },
14
+ "width": {
15
+ "default": {
16
+ "value": "0.2rem"
17
+ }
18
+ },
19
+ "offset": {
20
+ "default": {
21
+ "value": "0px"
22
+ }
23
+ }
24
+ }
25
+ }
26
+
@@ -0,0 +1,69 @@
1
+ {
2
+ "form": {
3
+ "color": {
4
+ "background": {
5
+ "default": {
6
+ "value": "{color.background.default}"
7
+ },
8
+ "focus": {
9
+ "value": "{color.background.default}"
10
+ },
11
+ "hover": {
12
+ "value": "{color.background.subtle}"
13
+ },
14
+ "active": {
15
+ "value": "{color.background.default}"
16
+ },
17
+ "disabled": {
18
+ "value": "{color.background.default}"
19
+ }
20
+ },
21
+ "content": {
22
+ "default": {
23
+ "value": "{color.content.default}"
24
+ },
25
+ "focus": {
26
+ "value": "{color.content.default}"
27
+ },
28
+ "hover": {
29
+ "value": "{color.content.default}"
30
+ },
31
+ "active": {
32
+ "value": "{color.content.default}"
33
+ },
34
+ "disabled": {
35
+ "value": "{color.content.disabled}"
36
+ }
37
+ },
38
+ "border": {
39
+ "default": {
40
+ "value": "{color.border.default}"
41
+ },
42
+ "focus": {
43
+ "value": "{color.border.brand}"
44
+ },
45
+ "hover": {
46
+ "value": "{color.border.default-hover}"
47
+ },
48
+ "active": {
49
+ "value": "{color.border.brand}"
50
+ },
51
+ "disabled": {
52
+ "value": "{color.border.default}"
53
+ },
54
+ "error": {
55
+ "value": "{color.border.utility.error}"
56
+ }
57
+ }
58
+ },
59
+ "input": {
60
+ "accent": {
61
+ "color": {
62
+ "default": {
63
+ "value": "{color.brand.gray.500}"
64
+ }
65
+ }
66
+ }
67
+ }
68
+ }
69
+ }
@@ -0,0 +1,39 @@
1
+ {
2
+ "link": {
3
+ "color": {
4
+ "content": {
5
+ "default": {
6
+ "value": "{color.brand.gray.600}"
7
+ },
8
+ "hover": {
9
+ "value": "{color.brand.gray.900}"
10
+ },
11
+ "active": {
12
+ "value": "{color.brand.gray.900}"
13
+ },
14
+ "visited": {
15
+ "value": "{color.brand.gray.600}"
16
+ }
17
+ }
18
+ },
19
+ "knockout": {
20
+ "color": {
21
+ "content": {
22
+ "default": {
23
+ "value": "{color.content.knockout}"
24
+ },
25
+ "hover": {
26
+ "value": "{color.content.knockout}"
27
+ },
28
+ "active": {
29
+ "value": "{color.content.knockout}"
30
+ },
31
+ "visited": {
32
+ "value": "{color.content.knockout}"
33
+ }
34
+ }
35
+ }
36
+ }
37
+ }
38
+ }
39
+
@@ -1,45 +0,0 @@
1
- name: Create Release
2
-
3
- on:
4
- push:
5
- branches:
6
- - main
7
-
8
- jobs:
9
- release-please:
10
- runs-on: ubuntu-latest
11
- steps:
12
- - uses: google-github-actions/release-please-action@v3
13
- name: Create release PR
14
- with:
15
- release-type: node
16
- package-name: '@grantcodes/style-dictionary'
17
-
18
- - uses: actions/checkout@v3
19
- name: Checkout code
20
- if: ${{ steps.release.outputs.release_created }}
21
-
22
- - uses: actions/setup-node@v3
23
- name: Setup node
24
- with:
25
- node-version: 16
26
- registry-url: 'https://registry.npmjs.org'
27
- if: ${{ steps.release.outputs.release_created }}
28
-
29
- - run: npm ci
30
- name: Install dependencies
31
- if: ${{ steps.release.outputs.release_created }}
32
-
33
- - run: npm run build
34
- name: Build package
35
- if: ${{ steps.release.outputs.release_created }}
36
-
37
- - run: npm test
38
- name: Run tests
39
- if: ${{ steps.release.outputs.release_created }}
40
-
41
- - run: npm publish
42
- name: Publish to NPM
43
- env:
44
- NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
45
- if: ${{ steps.release.outputs.release_created }}
@@ -1 +0,0 @@
1
- const defaultHooks = require('@grantcodes/commit/.simple-git-hooks.cjs'); module.exports = { ...defaultHooks };
@@ -1 +0,0 @@
1
- module.exports = { extends: ['@grantcodes/commit/commitlint.config.cjs'] };
@@ -1,181 +0,0 @@
1
- /**
2
- * Do not edit directly
3
- * Generated on Fri, 23 Sep 2022 11:25:07 GMT
4
- */
5
-
6
- :root {
7
- --component-input-base-box-shadow: none;
8
- --component-button-base-box-shadow: none;
9
- --component-button-base-border-color: transparent;
10
- --size-block-width-wide: 70rem;
11
- --size-block-width-normal: 40rem;
12
- --size-border-width: 0.125rem;
13
- --size-border-radius: 0.5rem;
14
- --size-space-unit: 1rem; /* The main unit that spacing is based on */
15
- --font-weight-heading: 900;
16
- --font-weight-body: 600;
17
- --font-line-height-heading: 1.1;
18
- --font-line-height-body: 1.5;
19
- --font-size-base: clamp(1rem, 0.34vw + 0.91rem, 1.2rem); /* the fluid base size of the font */
20
- --font-size-huge: 2.44140625rem; /* the base size of the font */
21
- --font-size-large: 1.5625rem; /* the base size of the font */
22
- --font-size-medium: 1.25rem; /* the base size of the font */
23
- --font-size-normal: 1rem; /* the base size of the font */
24
- --font-size-small: 0.8rem; /* the base size of the font */
25
- --font-size-tiny: 0.64rem; /* the base size of the font */
26
- --font-family-system-mono: ui-monospace, Menlo, Monaco, "Cascadia Mono", "Segoe UI Mono", "Roboto Mono", "Oxygen Mono", "Ubuntu Monospace", "Source Code Pro", "Fira Mono", "Droid Sans Mono", "Courier New", monospace;
27
- --font-family-system: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
28
- --color-base-error-900: #7a0906;
29
- --color-base-error-800: #93170a;
30
- --color-base-error-700: #b72b10;
31
- --color-base-error-600: #db4518;
32
- --color-base-error-500: #ff6321;
33
- --color-base-error-400: #ff9558;
34
- --color-base-error-300: #ffb379;
35
- --color-base-error-200: #ffd2a6;
36
- --color-base-error-100: #ffebd2;
37
- --color-base-warning-900: #786100;
38
- --color-base-warning-800: #927800;
39
- --color-base-warning-700: #b59700;
40
- --color-base-warning-600: #d8b800;
41
- --color-base-warning-500: #fcda00;
42
- --color-base-warning-400: #fde63f;
43
- --color-base-warning-300: #feed65;
44
- --color-base-warning-200: #fef598;
45
- --color-base-warning-100: #fefacb;
46
- --color-base-info-900: #004375;
47
- --color-base-info-800: #005d8d;
48
- --color-base-info-700: #0081af;
49
- --color-base-info-600: #00acd1;
50
- --color-base-info-500: #00dcf4;
51
- --color-base-info-400: #3ef5f8;
52
- --color-base-info-300: #64fbf2;
53
- --color-base-info-200: #98fdef;
54
- --color-base-info-100: #cbfef2;
55
- --color-base-success-900: #09600f;
56
- --color-base-success-800: #0f740f;
57
- --color-base-success-700: #219019;
58
- --color-base-success-600: #38ac24;
59
- --color-base-success-500: #53c932;
60
- --color-base-success-400: #85de61;
61
- --color-base-success-300: #aaee83;
62
- --color-base-success-200: #cff9ae;
63
- --color-base-success-100: #e9fcd6;
64
- --color-base-tertiary-900: #1b2c68;
65
- --color-base-tertiary-800: #2d437e;
66
- --color-base-tertiary-700: #48619c;
67
- --color-base-tertiary-600: #6985bb;
68
- --color-base-tertiary-500: #90acda;
69
- --color-base-tertiary-400: #adc6e8;
70
- --color-base-tertiary-300: #c2d8f3;
71
- --color-base-tertiary-200: #d9eafb;
72
- --color-base-tertiary-100: #ebf5fd;
73
- --color-base-secondary-900: #5c0d1c;
74
- --color-base-secondary-800: #6f151f;
75
- --color-base-secondary-700: #8a2225;
76
- --color-base-secondary-600: #a53731;
77
- --color-base-secondary-500: #c15444;
78
- --color-base-secondary-400: #d98570;
79
- --color-base-secondary-300: #ecaa90;
80
- --color-base-secondary-200: #f8cfb8;
81
- --color-base-secondary-100: #fbe9db;
82
- --color-base-primary-900: #17115e;
83
- --color-base-primary-800: #251d72;
84
- --color-base-primary-700: #382d8d;
85
- --color-base-primary-600: #4f42a9;
86
- --color-base-primary-500: #6a5bc5;
87
- --color-base-primary-400: #9183dc;
88
- --color-base-primary-300: #aea0ed;
89
- --color-base-primary-200: #cdc3f9;
90
- --color-base-primary-100: #e6e0fc;
91
- --color-base-dark-shade: #29263b;
92
- --color-base-dark-main: #24222f;
93
- --color-base-light-shade: #d6d5dd;
94
- --color-base-light-main: #f1f1f3;
95
- --asset-font-quicksand-weight-700-woff2: "assets/fonts/quicksand-bold.woff2";
96
- --asset-font-quicksand-weight-700-woff: "assets/fonts/quicksand-bold.woff";
97
- --asset-font-quicksand-weight-700-ttf: "assets/fonts/quicksand-bold.ttf";
98
- --asset-font-quicksand-weight-500-woff2: "assets/fonts/quicksand-medium.woff2";
99
- --asset-font-quicksand-weight-500-woff: "assets/fonts/quicksand-medium.woff";
100
- --asset-font-quicksand-weight-500-ttf: "assets/fonts/quicksand-medium.ttf";
101
- --asset-font-quicksand-weight-400-woff2: "assets/fonts/quicksand-regular.woff2";
102
- --asset-font-quicksand-weight-400-woff: "assets/fonts/quicksand-regular.woff";
103
- --asset-font-quicksand-weight-400-ttf: "assets/fonts/quicksand-regular.ttf";
104
- --asset-font-quicksand-weight-300-woff2: "assets/fonts/quicksand-light.woff2";
105
- --asset-font-quicksand-weight-300-woff: "assets/fonts/quicksand-light.woff";
106
- --asset-font-quicksand-weight-300-ttf: "assets/fonts/quicksand-light.ttf";
107
- --asset-font-quicksand-name: "Quicksand";
108
- --asset-font-greycliff-weight-900-woff2: "assets/fonts/greycliff-heavy.woff2";
109
- --asset-font-greycliff-weight-900-woff: "assets/fonts/greycliff-heavy.woff";
110
- --asset-font-greycliff-weight-900-eot: "assets/fonts/greycliff-heavy.eot";
111
- --asset-font-greycliff-weight-900-ttf: "assets/fonts/greycliff-heavy.ttf";
112
- --asset-font-greycliff-weight-800-woff2: "assets/fonts/greycliff-extra-bold.woff2";
113
- --asset-font-greycliff-weight-800-woff: "assets/fonts/greycliff-extra-bold.woff";
114
- --asset-font-greycliff-weight-800-eot: "assets/fonts/greycliff-extra-bold.eot";
115
- --asset-font-greycliff-weight-800-ttf: "assets/fonts/greycliff-extra-bold.ttf";
116
- --asset-font-greycliff-weight-700-woff2: "assets/fonts/greycliff-bold.woff2";
117
- --asset-font-greycliff-weight-700-woff: "assets/fonts/greycliff-bold.woff";
118
- --asset-font-greycliff-weight-700-eot: "assets/fonts/greycliff-bold.eot";
119
- --asset-font-greycliff-weight-700-ttf: "assets/fonts/greycliff-bold.ttf";
120
- --asset-font-greycliff-weight-600-woff2: "assets/fonts/greycliff-demi-bold.woff2";
121
- --asset-font-greycliff-weight-600-woff: "assets/fonts/greycliff-demi-bold.woff";
122
- --asset-font-greycliff-weight-600-eot: "assets/fonts/greycliff-demi-bold.eot";
123
- --asset-font-greycliff-weight-600-ttf: "assets/fonts/greycliff-demi-bold.ttf";
124
- --asset-font-greycliff-weight-500-woff2: "assets/fonts/greycliff-medium.woff2";
125
- --asset-font-greycliff-weight-500-woff: "assets/fonts/greycliff-medium.woff";
126
- --asset-font-greycliff-weight-500-eot: "assets/fonts/greycliff-medium.eot";
127
- --asset-font-greycliff-weight-500-ttf: "assets/fonts/greycliff-medium.ttf";
128
- --asset-font-greycliff-weight-400-woff2: "assets/fonts/greycliff-regular.woff2";
129
- --asset-font-greycliff-weight-400-woff: "assets/fonts/greycliff-regular.woff";
130
- --asset-font-greycliff-weight-400-eot: "assets/fonts/greycliff-regular.eot";
131
- --asset-font-greycliff-weight-400-ttf: "assets/fonts/greycliff-regular.ttf";
132
- --asset-font-greycliff-weight-300-woff2: "assets/fonts/greycliff-light.woff2";
133
- --asset-font-greycliff-weight-300-woff: "assets/fonts/greycliff-light.woff";
134
- --asset-font-greycliff-weight-300-eot: "assets/fonts/greycliff-light.eot";
135
- --asset-font-greycliff-weight-300-ttf: "assets/fonts/greycliff-light.ttf";
136
- --asset-font-greycliff-weight-200-woff2: "assets/fonts/greycliff-extra-light.woff2";
137
- --asset-font-greycliff-weight-200-woff: "assets/fonts/greycliff-extra-light.woff";
138
- --asset-font-greycliff-weight-200-eot: "assets/fonts/greycliff-extra-light.eot";
139
- --asset-font-greycliff-weight-200-ttf: "assets/fonts/greycliff-extra-light.ttf";
140
- --asset-font-greycliff-weight-100-woff2: "assets/fonts/greycliff-thin.woff2";
141
- --asset-font-greycliff-weight-100-woff: "assets/fonts/greycliff-thin.woff";
142
- --asset-font-greycliff-weight-100-eot: "assets/fonts/greycliff-thin.eot";
143
- --asset-font-greycliff-weight-100-ttf: "assets/fonts/greycliff-thin.ttf";
144
- --asset-font-greycliff-name: "Greycliff";
145
- --component-input-active-box-shadow: var(--component-input-base-box-shadow);
146
- --component-input-active-border-color: var(--color-base-primary-500);
147
- --component-input-active-color: var(--color-base-dark-main);
148
- --component-input-hover-box-shadow: var(--component-input-base-box-shadow);
149
- --component-input-hover-border-color: var(--color-base-dark-shade);
150
- --component-input-hover-color: var(--color-base-dark-main);
151
- --component-input-base-border-width: var(--size-border-width);
152
- --component-input-base-border-radius: var(--size-border-radius);
153
- --component-input-base-color: var(--color-base-dark-shade);
154
- --component-card-border-radius: var(--size-border-radius);
155
- --component-card-border-width: var(--size-border-width);
156
- --component-card-border-color: var(--color-base-light-shade);
157
- --component-card-background: var(--color-base-light-main);
158
- --component-card-color: var(--color-base-primary-500);
159
- --component-button-active-background: var(--color-base-primary-700);
160
- --component-button-hover-box-shadow: var(--component-button-base-box-shadow);
161
- --component-button-hover-border-color: var(--component-button-base-border-color);
162
- --component-button-hover-background: var(--color-base-primary-600);
163
- --component-button-hover-color: var(--color-base-light-main);
164
- --component-button-base-border-width: var(--size-border-width);
165
- --component-button-base-border-radius: var(--size-border-radius);
166
- --component-button-base-background: var(--color-base-primary-500);
167
- --component-button-base-color: var(--color-base-light-shade);
168
- --font-family-mono: var(--font-family-system-mono);
169
- --font-family-body: var(--asset-font-greycliff-name), var(--font-family-system);
170
- --font-family-heading: var(--asset-font-greycliff-name), var(--font-family-system);
171
- --color-font-base: var(--color-base-dark-main);
172
- --color-base-background-shade: var(--color-base-light-shade);
173
- --color-base-background-main: var(--color-base-light-main);
174
- --component-input-base-border-color: var(--color-base-background-shade);
175
- --component-input-base-background: var(--color-base-background-main);
176
- --component-button-active-box-shadow: var(--component-button-hover-box-shadow);
177
- --component-button-active-border-color: var(--component-button-hover-border-color);
178
- --component-button-active-color: var(--component-button-hover-color);
179
- --component-input-active-background: var(--component-input-base-background);
180
- --component-input-hover-background: var(--component-input-base-background);
181
- }
@@ -1,181 +0,0 @@
1
- /**
2
- * Do not edit directly
3
- * Generated on Fri, 23 Sep 2022 11:25:07 GMT
4
- */
5
-
6
- :root {
7
- --component-input-base-box-shadow: none;
8
- --component-button-base-box-shadow: none;
9
- --component-button-base-border-color: transparent;
10
- --size-block-width-wide: 70rem;
11
- --size-block-width-normal: 40rem;
12
- --size-border-width: 0.125rem;
13
- --size-border-radius: 0.5rem;
14
- --size-space-unit: 1rem; /* The main unit that spacing is based on */
15
- --font-weight-heading: 700;
16
- --font-weight-body: 400;
17
- --font-line-height-heading: 1.1;
18
- --font-line-height-body: 1.5;
19
- --font-size-base: clamp(1rem, 0.34vw + 0.91rem, 1.2rem); /* the fluid base size of the font */
20
- --font-size-huge: 2.44140625rem; /* the base size of the font */
21
- --font-size-large: 1.5625rem; /* the base size of the font */
22
- --font-size-medium: 1.25rem; /* the base size of the font */
23
- --font-size-normal: 1rem; /* the base size of the font */
24
- --font-size-small: 0.8rem; /* the base size of the font */
25
- --font-size-tiny: 0.64rem; /* the base size of the font */
26
- --font-family-system-mono: ui-monospace, Menlo, Monaco, "Cascadia Mono", "Segoe UI Mono", "Roboto Mono", "Oxygen Mono", "Ubuntu Monospace", "Source Code Pro", "Fira Mono", "Droid Sans Mono", "Courier New", monospace;
27
- --font-family-system: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
28
- --color-base-error-900: #f9364d;
29
- --color-base-error-800: #f9364d;
30
- --color-base-error-700: #f9364d;
31
- --color-base-error-600: #f9364d;
32
- --color-base-error-500: #f9364d;
33
- --color-base-error-400: #f9364d;
34
- --color-base-error-300: #f9364d;
35
- --color-base-error-200: #f9364d;
36
- --color-base-error-100: #f9364d;
37
- --color-base-warning-900: #ffe102;
38
- --color-base-warning-800: #ffe102;
39
- --color-base-warning-700: #ffe102;
40
- --color-base-warning-600: #ffe102;
41
- --color-base-warning-500: #ffe102;
42
- --color-base-warning-400: #ffe102;
43
- --color-base-warning-300: #ffe102;
44
- --color-base-warning-200: #ffe102;
45
- --color-base-warning-100: #ffe102;
46
- --color-base-info-900: #009af9;
47
- --color-base-info-800: #009af9;
48
- --color-base-info-700: #009af9;
49
- --color-base-info-600: #009af9;
50
- --color-base-info-500: #009af9;
51
- --color-base-info-400: #009af9;
52
- --color-base-info-300: #009af9;
53
- --color-base-info-200: #009af9;
54
- --color-base-info-100: #009af9;
55
- --color-base-success-900: #5bd13a;
56
- --color-base-success-800: #5bd13a;
57
- --color-base-success-700: #5bd13a;
58
- --color-base-success-600: #5bd13a;
59
- --color-base-success-500: #5bd13a;
60
- --color-base-success-400: #5bd13a;
61
- --color-base-success-300: #5bd13a;
62
- --color-base-success-200: #5bd13a;
63
- --color-base-success-100: #5bd13a;
64
- --color-base-tertiary-900: #1b2c68;
65
- --color-base-tertiary-800: #2d437e;
66
- --color-base-tertiary-700: #48619c;
67
- --color-base-tertiary-600: #6985bb;
68
- --color-base-tertiary-500: #90acda;
69
- --color-base-tertiary-400: #adc6e8;
70
- --color-base-tertiary-300: #c2d8f3;
71
- --color-base-tertiary-200: #d9eafb;
72
- --color-base-tertiary-100: #ebf5fd;
73
- --color-base-secondary-900: #4a58fc;
74
- --color-base-secondary-800: #4a58fc;
75
- --color-base-secondary-700: #4a58fc;
76
- --color-base-secondary-600: #4a58fc;
77
- --color-base-secondary-500: #7c86fd;
78
- --color-base-secondary-400: #7c86fd;
79
- --color-base-secondary-300: #7c86fd;
80
- --color-base-secondary-200: #7c86fd;
81
- --color-base-secondary-100: #7c86fd;
82
- --color-base-primary-900: #ae133e;
83
- --color-base-primary-800: #ae133e;
84
- --color-base-primary-700: #ae133e;
85
- --color-base-primary-600: #ae133e;
86
- --color-base-primary-500: #ea3d6d;
87
- --color-base-primary-400: #ea3d6d;
88
- --color-base-primary-300: #ea3d6d;
89
- --color-base-primary-200: #ea3d6d;
90
- --color-base-primary-100: #ea3d6d;
91
- --color-base-dark-shade: #292828;
92
- --color-base-dark-main: #292828;
93
- --color-base-light-shade: #fafafa;
94
- --color-base-light-main: #fafafa;
95
- --asset-font-quicksand-weight-700-woff2: "assets/fonts/quicksand-bold.woff2";
96
- --asset-font-quicksand-weight-700-woff: "assets/fonts/quicksand-bold.woff";
97
- --asset-font-quicksand-weight-700-ttf: "assets/fonts/quicksand-bold.ttf";
98
- --asset-font-quicksand-weight-500-woff2: "assets/fonts/quicksand-medium.woff2";
99
- --asset-font-quicksand-weight-500-woff: "assets/fonts/quicksand-medium.woff";
100
- --asset-font-quicksand-weight-500-ttf: "assets/fonts/quicksand-medium.ttf";
101
- --asset-font-quicksand-weight-400-woff2: "assets/fonts/quicksand-regular.woff2";
102
- --asset-font-quicksand-weight-400-woff: "assets/fonts/quicksand-regular.woff";
103
- --asset-font-quicksand-weight-400-ttf: "assets/fonts/quicksand-regular.ttf";
104
- --asset-font-quicksand-weight-300-woff2: "assets/fonts/quicksand-light.woff2";
105
- --asset-font-quicksand-weight-300-woff: "assets/fonts/quicksand-light.woff";
106
- --asset-font-quicksand-weight-300-ttf: "assets/fonts/quicksand-light.ttf";
107
- --asset-font-quicksand-name: "Quicksand";
108
- --asset-font-greycliff-weight-900-woff2: "assets/fonts/greycliff-heavy.woff2";
109
- --asset-font-greycliff-weight-900-woff: "assets/fonts/greycliff-heavy.woff";
110
- --asset-font-greycliff-weight-900-eot: "assets/fonts/greycliff-heavy.eot";
111
- --asset-font-greycliff-weight-900-ttf: "assets/fonts/greycliff-heavy.ttf";
112
- --asset-font-greycliff-weight-800-woff2: "assets/fonts/greycliff-extra-bold.woff2";
113
- --asset-font-greycliff-weight-800-woff: "assets/fonts/greycliff-extra-bold.woff";
114
- --asset-font-greycliff-weight-800-eot: "assets/fonts/greycliff-extra-bold.eot";
115
- --asset-font-greycliff-weight-800-ttf: "assets/fonts/greycliff-extra-bold.ttf";
116
- --asset-font-greycliff-weight-700-woff2: "assets/fonts/greycliff-bold.woff2";
117
- --asset-font-greycliff-weight-700-woff: "assets/fonts/greycliff-bold.woff";
118
- --asset-font-greycliff-weight-700-eot: "assets/fonts/greycliff-bold.eot";
119
- --asset-font-greycliff-weight-700-ttf: "assets/fonts/greycliff-bold.ttf";
120
- --asset-font-greycliff-weight-600-woff2: "assets/fonts/greycliff-demi-bold.woff2";
121
- --asset-font-greycliff-weight-600-woff: "assets/fonts/greycliff-demi-bold.woff";
122
- --asset-font-greycliff-weight-600-eot: "assets/fonts/greycliff-demi-bold.eot";
123
- --asset-font-greycliff-weight-600-ttf: "assets/fonts/greycliff-demi-bold.ttf";
124
- --asset-font-greycliff-weight-500-woff2: "assets/fonts/greycliff-medium.woff2";
125
- --asset-font-greycliff-weight-500-woff: "assets/fonts/greycliff-medium.woff";
126
- --asset-font-greycliff-weight-500-eot: "assets/fonts/greycliff-medium.eot";
127
- --asset-font-greycliff-weight-500-ttf: "assets/fonts/greycliff-medium.ttf";
128
- --asset-font-greycliff-weight-400-woff2: "assets/fonts/greycliff-regular.woff2";
129
- --asset-font-greycliff-weight-400-woff: "assets/fonts/greycliff-regular.woff";
130
- --asset-font-greycliff-weight-400-eot: "assets/fonts/greycliff-regular.eot";
131
- --asset-font-greycliff-weight-400-ttf: "assets/fonts/greycliff-regular.ttf";
132
- --asset-font-greycliff-weight-300-woff2: "assets/fonts/greycliff-light.woff2";
133
- --asset-font-greycliff-weight-300-woff: "assets/fonts/greycliff-light.woff";
134
- --asset-font-greycliff-weight-300-eot: "assets/fonts/greycliff-light.eot";
135
- --asset-font-greycliff-weight-300-ttf: "assets/fonts/greycliff-light.ttf";
136
- --asset-font-greycliff-weight-200-woff2: "assets/fonts/greycliff-extra-light.woff2";
137
- --asset-font-greycliff-weight-200-woff: "assets/fonts/greycliff-extra-light.woff";
138
- --asset-font-greycliff-weight-200-eot: "assets/fonts/greycliff-extra-light.eot";
139
- --asset-font-greycliff-weight-200-ttf: "assets/fonts/greycliff-extra-light.ttf";
140
- --asset-font-greycliff-weight-100-woff2: "assets/fonts/greycliff-thin.woff2";
141
- --asset-font-greycliff-weight-100-woff: "assets/fonts/greycliff-thin.woff";
142
- --asset-font-greycliff-weight-100-eot: "assets/fonts/greycliff-thin.eot";
143
- --asset-font-greycliff-weight-100-ttf: "assets/fonts/greycliff-thin.ttf";
144
- --asset-font-greycliff-name: "Greycliff";
145
- --component-input-active-box-shadow: var(--component-input-base-box-shadow);
146
- --component-input-active-border-color: var(--color-base-primary-500);
147
- --component-input-active-color: var(--color-base-dark-main);
148
- --component-input-hover-box-shadow: var(--component-input-base-box-shadow);
149
- --component-input-hover-border-color: var(--color-base-dark-shade);
150
- --component-input-hover-color: var(--color-base-dark-main);
151
- --component-input-base-border-width: var(--size-border-width);
152
- --component-input-base-border-radius: var(--size-border-radius);
153
- --component-input-base-color: var(--color-base-dark-shade);
154
- --component-card-border-radius: var(--size-border-radius);
155
- --component-card-border-width: var(--size-border-width);
156
- --component-card-border-color: var(--color-base-light-shade);
157
- --component-card-background: var(--color-base-light-main);
158
- --component-card-color: var(--color-base-primary-500);
159
- --component-button-active-background: var(--color-base-primary-700);
160
- --component-button-hover-box-shadow: var(--component-button-base-box-shadow);
161
- --component-button-hover-border-color: var(--component-button-base-border-color);
162
- --component-button-hover-background: var(--color-base-primary-600);
163
- --component-button-hover-color: var(--color-base-light-main);
164
- --component-button-base-border-width: var(--size-border-width);
165
- --component-button-base-border-radius: var(--size-border-radius);
166
- --component-button-base-background: var(--color-base-primary-500);
167
- --component-button-base-color: var(--color-base-light-shade);
168
- --font-family-mono: var(--font-family-system-mono);
169
- --font-family-body: var(--asset-font-quicksand-name), var(--font-family-system);
170
- --font-family-heading: var(--asset-font-quicksand-name), var(--font-family-system);
171
- --color-font-base: var(--color-base-dark-main);
172
- --color-base-background-shade: var(--color-base-light-shade);
173
- --color-base-background-main: var(--color-base-light-main);
174
- --component-input-base-border-color: var(--color-base-background-shade);
175
- --component-input-base-background: var(--color-base-background-main);
176
- --component-button-active-box-shadow: var(--component-button-hover-box-shadow);
177
- --component-button-active-border-color: var(--component-button-hover-border-color);
178
- --component-button-active-color: var(--component-button-hover-color);
179
- --component-input-active-background: var(--component-input-base-background);
180
- --component-input-hover-background: var(--component-input-base-background);
181
- }