@microsoft/atlas-css 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/README.md +42 -42
  2. package/dist/index.css +1 -1
  3. package/dist/index.css.map +1 -1
  4. package/dist/tokens.json +1 -1
  5. package/dist/tokens.ts +4 -0
  6. package/package.json +57 -57
  7. package/src/atomics/README.md +54 -54
  8. package/src/atomics/border.scss +56 -56
  9. package/src/atomics/colors.scss +166 -148
  10. package/src/atomics/display.scss +33 -33
  11. package/src/atomics/flex.scss +69 -69
  12. package/src/atomics/index.scss +8 -8
  13. package/src/atomics/position.scss +19 -19
  14. package/src/atomics/shadow.scss +19 -19
  15. package/src/atomics/spacing.scss +73 -73
  16. package/src/atomics/typography.scss +105 -105
  17. package/src/components/README.md +41 -41
  18. package/src/components/button-reset.scss +8 -8
  19. package/src/components/button.scss +243 -243
  20. package/src/components/buttons.scss +87 -87
  21. package/src/components/component.md +6 -6
  22. package/src/components/icon.scss +20 -20
  23. package/src/components/index.scss +7 -7
  24. package/src/components/link-button.scss +30 -30
  25. package/src/components/markdown.scss +156 -156
  26. package/src/components/table.scss +67 -67
  27. package/src/core/animations.scss +8 -8
  28. package/src/core/focus.scss +35 -35
  29. package/src/core/font-stack.scss +28 -28
  30. package/src/core/index.scss +6 -6
  31. package/src/core/themes.scss +86 -86
  32. package/src/index.scss +6 -6
  33. package/src/mixins/center.scss +11 -11
  34. package/src/mixins/code-block.scss +43 -43
  35. package/src/mixins/control.scss +44 -44
  36. package/src/mixins/focus.scss +10 -10
  37. package/src/mixins/font-size.scss +35 -35
  38. package/src/mixins/index.scss +9 -9
  39. package/src/mixins/loader.scss +16 -16
  40. package/src/mixins/media-queries.scss +49 -49
  41. package/src/mixins/transparency.scss +14 -14
  42. package/src/mixins/unselectable.scss +13 -13
  43. package/src/patterns/index.scss +1 -1
  44. package/src/tokens/animation.scss +8 -8
  45. package/src/tokens/border.scss +8 -8
  46. package/src/tokens/breakpoints.scss +11 -11
  47. package/src/tokens/colors.scss +215 -212
  48. package/src/tokens/direction.scss +18 -18
  49. package/src/tokens/display.scss +5 -5
  50. package/src/tokens/focus.scss +9 -9
  51. package/src/tokens/font-stack.scss +10 -10
  52. package/src/tokens/index.scss +18 -18
  53. package/src/tokens/layout.scss +8 -8
  54. package/src/tokens/palette.scss +188 -188
  55. package/src/tokens/position.scss +5 -5
  56. package/src/tokens/radius.scss +9 -9
  57. package/src/tokens/schemes.scss +14 -14
  58. package/src/tokens/shadow.scss +11 -11
  59. package/src/tokens/spacing.scss +25 -25
  60. package/src/tokens/themes.scss +291 -291
  61. package/src/tokens/typography.scss +29 -29
  62. package/src/tokens/z-index.scss +20 -20
  63. package/tokens/README.md +34 -34
  64. package/tokens/index.js +246 -246
  65. package/tokens/types.d.ts +35 -35
@@ -1,14 +1,14 @@
1
- %transparent-effects {
2
- outline-color: inherit;
3
- background-color: transparent;
4
- appearance: none;
5
-
6
- &:not(:hover),
7
- &:not(.focus-visible) {
8
- background-color: transparent;
9
- }
10
- }
11
-
12
- @mixin transparent-effects {
13
- @extend %transparent-effects;
14
- }
1
+ %transparent-effects {
2
+ outline-color: inherit;
3
+ background-color: transparent;
4
+ appearance: none;
5
+
6
+ &:not(:hover),
7
+ &:not(.focus-visible) {
8
+ background-color: transparent;
9
+ }
10
+ }
11
+
12
+ @mixin transparent-effects {
13
+ @extend %transparent-effects;
14
+ }
@@ -1,13 +1,13 @@
1
- %unselectable {
2
- /* stylelint-disable */
3
- -webkit-touch-callout: none;
4
- -webkit-user-select: none;
5
- -moz-user-select: none;
6
- -ms-user-select: none;
7
- /* stylelint-enable */
8
- user-select: none;
9
- }
10
-
11
- @mixin unselectable {
12
- @extend %unselectable;
13
- }
1
+ %unselectable {
2
+ /* stylelint-disable */
3
+ -webkit-touch-callout: none;
4
+ -webkit-user-select: none;
5
+ -moz-user-select: none;
6
+ -ms-user-select: none;
7
+ /* stylelint-enable */
8
+ user-select: none;
9
+ }
10
+
11
+ @mixin unselectable {
12
+ @extend %unselectable;
13
+ }
@@ -1 +1 @@
1
- // TBD
1
+ // TBD
@@ -1,8 +1,8 @@
1
- /**
2
- * @sass-export-section="animation"
3
- */
4
- // Animation related property values
5
- $input-timing-function: cubic-bezier(0.4, 0, 0.23, 1) !default;
6
- $input-transition-duration: 200ms;
7
- $nav-bar-transition-duration: 86ms !default;
8
- //@end-sass-export-section
1
+ /**
2
+ * @sass-export-section="animation"
3
+ */
4
+ // Animation related property values
5
+ $input-timing-function: cubic-bezier(0.4, 0, 0.23, 1) !default;
6
+ $input-transition-duration: 200ms;
7
+ $nav-bar-transition-duration: 86ms !default;
8
+ //@end-sass-export-section
@@ -1,8 +1,8 @@
1
- /**
2
- * @sass-export-section="border"
3
- */
4
- $border-width: 1px !default;
5
- $border-width-large: 0.5rem !default;
6
- $border-radius: 0.25rem !default;
7
- $border-radius-large: 0.5rem !default;
8
- //@end-sass-export-section
1
+ /**
2
+ * @sass-export-section="border"
3
+ */
4
+ $border-width: 1px !default;
5
+ $border-width-large: 0.5rem !default;
6
+ $border-radius: 0.25rem !default;
7
+ $border-radius-large: 0.5rem !default;
8
+ //@end-sass-export-section
@@ -1,11 +1,11 @@
1
- /**
2
- * @sass-export-section="breakpoints"
3
- */
4
- // The horizontal gap tied to containers
5
- $container-gap: 64px !default;
6
-
7
- // Breakpoints
8
- $breakpoint-tablet: 768px !default;
9
- $breakpoint-desktop: 1088px !default;
10
- $breakpoint-widescreen: 1472px !default;
11
- //@end-sass-export-section
1
+ /**
2
+ * @sass-export-section="breakpoints"
3
+ */
4
+ // The horizontal gap tied to containers
5
+ $container-gap: 64px !default;
6
+
7
+ // Breakpoints
8
+ $breakpoint-tablet: 768px !default;
9
+ $breakpoint-desktop: 1088px !default;
10
+ $breakpoint-widescreen: 1472px !default;
11
+ //@end-sass-export-section
@@ -1,212 +1,215 @@
1
- /**
2
- * @sass-export-section="colors"
3
- */
4
- $text: var(--theme-text);
5
- $text-subtle: var(--theme-text-subtle);
6
- $text-invert: var(--theme-text-invert);
7
- $hyperlink: var(--theme-hyperlink);
8
- $text-glow-high-contrast: var(--theme-text-glow-high-contrast);
9
- $box-shadow-color-light: var(--theme-box-shadow-light);
10
- $box-shadow-color-medium: var(--theme-box-shadow-medium);
11
- $box-shadow-color-heavy: var(--theme-box-shadow-heavy);
12
- $box-shadow-color-extra-heavy: var(--theme-box-shadow-extra-heavy);
13
-
14
- $body-background: var(--theme-body-background);
15
- $body-background-medium: var(--theme-body-background-medium);
16
-
17
- $alternate-background: var(--theme-alternate-background);
18
- $alternate-background-medium: var(--theme-alternate-background-medium);
19
-
20
- $overlay: var(--theme-overlay);
21
- $overlay-invert: var(--theme-overlay-invert);
22
- $overlay-static: $palette-black-opacity-50;
23
- $border: var(--theme-border);
24
-
25
- $code-header: var(--theme-code-header);
26
- $code-block: var(--theme-code-block);
27
- $inline-code: var(--theme-inline-code);
28
-
29
- $table-header: var(--theme-table-header);
30
- $table-row-header: var(--theme-table-row-header);
31
- $table-border-dark: var(--theme-table-border-dark);
32
-
33
- $facepile-red: var(--theme-facepile-red);
34
- $facepile-teal: var(--theme-facepile-teal);
35
- $facepile-blue: var(--theme-facepile-blue);
36
-
37
- $default-hover: var(--theme-hover-base);
38
- $default-hover-invert: $body-background-medium;
39
- $border-white-high-contrast: var(--theme-border-white-high-contrast);
40
- $border-yellow-high-contrast: var(--theme-border-yellow-high-contrast);
41
- $code-highlight-background: var(--theme-code-highlight-background);
42
- $visited: var(--theme-visited);
43
-
44
- $score-low-off: var(--theme-score-low-off);
45
- $score-low: var(--theme-score-low);
46
- $score-medium-off: var(--theme-score-medium-off);
47
- $score-medium: var(--theme-score-medium);
48
- $score-high-off: var(--theme-score-high-off);
49
- $score-high: var(--theme-score-high);
50
-
51
- $primary: var(--theme-primary-base);
52
- $primary-background: var(--theme-primary-background);
53
- $primary-background-glow-high-contrast: var(--theme-primary-background-glow-high-contrast);
54
- $primary-dark: var(--theme-primary-dark);
55
- $primary-hover: var(--theme-primary-hover);
56
- $primary-active: var(--theme-primary-active);
57
- $primary-invert: var(--theme-primary-invert);
58
- $primary-box-shadow: var(--theme-primary-box-shadow);
59
-
60
- $secondary: var(--theme-secondary-base);
61
- $secondary-background: var(--theme-secondary-background);
62
- $secondary-background-glow-high-contrast: var(--theme-secondary-background-glow-high-contrast);
63
- $secondary-dark: var(--theme-secondary-dark);
64
- $secondary-hover: var(--theme-secondary-hover);
65
- $secondary-active: var(--theme-secondary-active);
66
- $secondary-invert: var(--theme-secondary-invert);
67
- $secondary-box-shadow: var(--theme-secondary-box-shadow);
68
-
69
- $tertiary: var(--theme-tertiary-base);
70
- $tertiary-background: var(--theme-tertiary-background);
71
- $tertiary-background-glow-high-contrast: var(--theme-tertiary-background-glow-high-contrast);
72
- $tertiary-dark: var(--theme-tertiary-dark);
73
- $tertiary-hover: var(--theme-tertiary-hover);
74
- $tertiary-active: var(--theme-tertiary-active);
75
- $tertiary-invert: var(--theme-tertiary-invert);
76
- $tertiary-box-shadow: var(--theme-tertiary-box-shadow);
77
-
78
- $success: var(--theme-success-base);
79
- $success-background: var(--theme-success-background);
80
- $success-background-glow-high-contrast: var(--theme-success-background-glow-high-contrast);
81
- $success-dark: var(--theme-success-dark);
82
- $success-hover: var(--theme-success-hover);
83
- $success-active: var(--theme-success-active);
84
- $success-invert: var(--theme-success-invert);
85
- $success-box-shadow: var(--theme-success-box-shadow);
86
-
87
- $info: var(--theme-info-base);
88
- $info-background: var(--theme-info-background);
89
- $info-background-glow-high-contrast: var(--theme-info-background-glow-high-contrast);
90
- $info-dark: var(--theme-info-dark);
91
- $info-hover: var(--theme-info-hover);
92
- $info-active: var(--theme-info-active);
93
- $info-invert: var(--theme-info-invert);
94
- $info-box-shadow: var(--theme-info-box-shadow);
95
-
96
- $warning: var(--theme-warning-base);
97
- $warning-background: var(--theme-warning-background);
98
- $warning-background-glow-high-contrast: var(--theme-warning-background-glow-high-contrast);
99
- $warning-dark: var(--theme-warning-dark);
100
- $warning-hover: var(--theme-warning-hover);
101
- $warning-active: var(--theme-warning-active);
102
- $warning-invert: var(--theme-warning-invert);
103
- $warning-box-shadow: var(--theme-warning-box-shadow);
104
-
105
- $danger: var(--theme-danger-base);
106
- $danger-background: var(--theme-danger-background);
107
- $danger-background-glow-high-contrast: var(--theme-danger-background-glow-high-contrast);
108
- $danger-dark: var(--theme-danger-dark);
109
- $danger-hover: var(--theme-danger-hover);
110
- $danger-active: var(--theme-danger-active);
111
- $danger-invert: var(--theme-danger-invert);
112
- $danger-box-shadow: var(--theme-danger-box-shadow);
113
-
114
- $colors: (
115
- 'primary': (
116
- $primary,
117
- $primary-background,
118
- $primary-dark,
119
- $primary-hover,
120
- $primary-active,
121
- $primary-invert,
122
- $primary-box-shadow,
123
- $primary-background-glow-high-contrast
124
- ),
125
- 'secondary': (
126
- $secondary,
127
- $secondary-background,
128
- $secondary-dark,
129
- $secondary-hover,
130
- $secondary-active,
131
- $secondary-invert,
132
- $secondary-box-shadow,
133
- $secondary-background-glow-high-contrast
134
- ),
135
- 'tertiary': (
136
- $tertiary,
137
- $tertiary-background,
138
- $tertiary-dark,
139
- $tertiary-hover,
140
- $tertiary-active,
141
- $tertiary-invert,
142
- $tertiary-box-shadow,
143
- $tertiary-background-glow-high-contrast
144
- ),
145
- 'success': (
146
- $success,
147
- $success-background,
148
- $success-dark,
149
- $success-hover,
150
- $success-active,
151
- $success-invert,
152
- $success-box-shadow,
153
- $success-background-glow-high-contrast
154
- ),
155
- 'info': (
156
- $info,
157
- $info-background,
158
- $info-dark,
159
- $info-hover,
160
- $info-active,
161
- $info-invert,
162
- $info-box-shadow,
163
- $info-background-glow-high-contrast
164
- ),
165
- 'warning': (
166
- $warning,
167
- $warning-background,
168
- $warning-dark,
169
- $warning-hover,
170
- $warning-active,
171
- $warning-invert,
172
- $warning-box-shadow,
173
- $warning-background-glow-high-contrast
174
- ),
175
- 'danger': (
176
- $danger,
177
- $danger-background,
178
- $danger-dark,
179
- $danger-hover,
180
- $danger-active,
181
- $danger-invert,
182
- $danger-box-shadow,
183
- $danger-background-glow-high-contrast
184
- )
185
- ) !default;
186
-
187
- // Combined framework and brand colors for the array used in all the loops
188
-
189
- // Color indexes, for use in color loops.
190
-
191
- $color-index-base: 1;
192
- $color-index-background: 2;
193
- $color-index-dark: 3;
194
- $color-index-hover: 4;
195
- $color-index-active: 5;
196
- $color-index-invert: 6;
197
- $color-index-box-shadow: 7;
198
- $color-index-background-glow-high-contrast: 8;
199
-
200
- // example implementation of a color loop
201
-
202
- // @each $name, $color-set in $colors {
203
- // $base: nth($color-set, $color-index-base);
204
- // $background: nth($color-set, $color-index-background);
205
- // $heavy: nth($color-set, $color-index-dark);
206
- // $hover: nth($color-set, $color-index-hover);
207
- // $active: nth($color-set, $color-index-active);
208
- // $invert: nth($color-set, $color-index-invert);
209
- // $box-shadow: nth($color-set, $color-index-box-shadow);
210
- //}
211
-
212
- //@end-sass-export-section
1
+ /**
2
+ * @sass-export-section="colors"
3
+ */
4
+ $white-static: #fff;
5
+ $black-static: #000;
6
+
7
+ $text: var(--theme-text);
8
+ $text-subtle: var(--theme-text-subtle);
9
+ $text-invert: var(--theme-text-invert);
10
+ $hyperlink: var(--theme-hyperlink);
11
+ $text-glow-high-contrast: var(--theme-text-glow-high-contrast);
12
+ $box-shadow-color-light: var(--theme-box-shadow-light);
13
+ $box-shadow-color-medium: var(--theme-box-shadow-medium);
14
+ $box-shadow-color-heavy: var(--theme-box-shadow-heavy);
15
+ $box-shadow-color-extra-heavy: var(--theme-box-shadow-extra-heavy);
16
+
17
+ $body-background: var(--theme-body-background);
18
+ $body-background-medium: var(--theme-body-background-medium);
19
+
20
+ $alternate-background: var(--theme-alternate-background);
21
+ $alternate-background-medium: var(--theme-alternate-background-medium);
22
+
23
+ $overlay: var(--theme-overlay);
24
+ $overlay-invert: var(--theme-overlay-invert);
25
+ $overlay-static: $palette-black-opacity-50;
26
+ $border: var(--theme-border);
27
+
28
+ $code-header: var(--theme-code-header);
29
+ $code-block: var(--theme-code-block);
30
+ $inline-code: var(--theme-inline-code);
31
+
32
+ $table-header: var(--theme-table-header);
33
+ $table-row-header: var(--theme-table-row-header);
34
+ $table-border-dark: var(--theme-table-border-dark);
35
+
36
+ $facepile-red: var(--theme-facepile-red);
37
+ $facepile-teal: var(--theme-facepile-teal);
38
+ $facepile-blue: var(--theme-facepile-blue);
39
+
40
+ $default-hover: var(--theme-hover-base);
41
+ $default-hover-invert: $body-background-medium;
42
+ $border-white-high-contrast: var(--theme-border-white-high-contrast);
43
+ $border-yellow-high-contrast: var(--theme-border-yellow-high-contrast);
44
+ $code-highlight-background: var(--theme-code-highlight-background);
45
+ $visited: var(--theme-visited);
46
+
47
+ $score-low-off: var(--theme-score-low-off);
48
+ $score-low: var(--theme-score-low);
49
+ $score-medium-off: var(--theme-score-medium-off);
50
+ $score-medium: var(--theme-score-medium);
51
+ $score-high-off: var(--theme-score-high-off);
52
+ $score-high: var(--theme-score-high);
53
+
54
+ $primary: var(--theme-primary-base);
55
+ $primary-background: var(--theme-primary-background);
56
+ $primary-background-glow-high-contrast: var(--theme-primary-background-glow-high-contrast);
57
+ $primary-dark: var(--theme-primary-dark);
58
+ $primary-hover: var(--theme-primary-hover);
59
+ $primary-active: var(--theme-primary-active);
60
+ $primary-invert: var(--theme-primary-invert);
61
+ $primary-box-shadow: var(--theme-primary-box-shadow);
62
+
63
+ $secondary: var(--theme-secondary-base);
64
+ $secondary-background: var(--theme-secondary-background);
65
+ $secondary-background-glow-high-contrast: var(--theme-secondary-background-glow-high-contrast);
66
+ $secondary-dark: var(--theme-secondary-dark);
67
+ $secondary-hover: var(--theme-secondary-hover);
68
+ $secondary-active: var(--theme-secondary-active);
69
+ $secondary-invert: var(--theme-secondary-invert);
70
+ $secondary-box-shadow: var(--theme-secondary-box-shadow);
71
+
72
+ $tertiary: var(--theme-tertiary-base);
73
+ $tertiary-background: var(--theme-tertiary-background);
74
+ $tertiary-background-glow-high-contrast: var(--theme-tertiary-background-glow-high-contrast);
75
+ $tertiary-dark: var(--theme-tertiary-dark);
76
+ $tertiary-hover: var(--theme-tertiary-hover);
77
+ $tertiary-active: var(--theme-tertiary-active);
78
+ $tertiary-invert: var(--theme-tertiary-invert);
79
+ $tertiary-box-shadow: var(--theme-tertiary-box-shadow);
80
+
81
+ $success: var(--theme-success-base);
82
+ $success-background: var(--theme-success-background);
83
+ $success-background-glow-high-contrast: var(--theme-success-background-glow-high-contrast);
84
+ $success-dark: var(--theme-success-dark);
85
+ $success-hover: var(--theme-success-hover);
86
+ $success-active: var(--theme-success-active);
87
+ $success-invert: var(--theme-success-invert);
88
+ $success-box-shadow: var(--theme-success-box-shadow);
89
+
90
+ $info: var(--theme-info-base);
91
+ $info-background: var(--theme-info-background);
92
+ $info-background-glow-high-contrast: var(--theme-info-background-glow-high-contrast);
93
+ $info-dark: var(--theme-info-dark);
94
+ $info-hover: var(--theme-info-hover);
95
+ $info-active: var(--theme-info-active);
96
+ $info-invert: var(--theme-info-invert);
97
+ $info-box-shadow: var(--theme-info-box-shadow);
98
+
99
+ $warning: var(--theme-warning-base);
100
+ $warning-background: var(--theme-warning-background);
101
+ $warning-background-glow-high-contrast: var(--theme-warning-background-glow-high-contrast);
102
+ $warning-dark: var(--theme-warning-dark);
103
+ $warning-hover: var(--theme-warning-hover);
104
+ $warning-active: var(--theme-warning-active);
105
+ $warning-invert: var(--theme-warning-invert);
106
+ $warning-box-shadow: var(--theme-warning-box-shadow);
107
+
108
+ $danger: var(--theme-danger-base);
109
+ $danger-background: var(--theme-danger-background);
110
+ $danger-background-glow-high-contrast: var(--theme-danger-background-glow-high-contrast);
111
+ $danger-dark: var(--theme-danger-dark);
112
+ $danger-hover: var(--theme-danger-hover);
113
+ $danger-active: var(--theme-danger-active);
114
+ $danger-invert: var(--theme-danger-invert);
115
+ $danger-box-shadow: var(--theme-danger-box-shadow);
116
+
117
+ $colors: (
118
+ 'primary': (
119
+ $primary,
120
+ $primary-background,
121
+ $primary-dark,
122
+ $primary-hover,
123
+ $primary-active,
124
+ $primary-invert,
125
+ $primary-box-shadow,
126
+ $primary-background-glow-high-contrast
127
+ ),
128
+ 'secondary': (
129
+ $secondary,
130
+ $secondary-background,
131
+ $secondary-dark,
132
+ $secondary-hover,
133
+ $secondary-active,
134
+ $secondary-invert,
135
+ $secondary-box-shadow,
136
+ $secondary-background-glow-high-contrast
137
+ ),
138
+ 'tertiary': (
139
+ $tertiary,
140
+ $tertiary-background,
141
+ $tertiary-dark,
142
+ $tertiary-hover,
143
+ $tertiary-active,
144
+ $tertiary-invert,
145
+ $tertiary-box-shadow,
146
+ $tertiary-background-glow-high-contrast
147
+ ),
148
+ 'success': (
149
+ $success,
150
+ $success-background,
151
+ $success-dark,
152
+ $success-hover,
153
+ $success-active,
154
+ $success-invert,
155
+ $success-box-shadow,
156
+ $success-background-glow-high-contrast
157
+ ),
158
+ 'info': (
159
+ $info,
160
+ $info-background,
161
+ $info-dark,
162
+ $info-hover,
163
+ $info-active,
164
+ $info-invert,
165
+ $info-box-shadow,
166
+ $info-background-glow-high-contrast
167
+ ),
168
+ 'warning': (
169
+ $warning,
170
+ $warning-background,
171
+ $warning-dark,
172
+ $warning-hover,
173
+ $warning-active,
174
+ $warning-invert,
175
+ $warning-box-shadow,
176
+ $warning-background-glow-high-contrast
177
+ ),
178
+ 'danger': (
179
+ $danger,
180
+ $danger-background,
181
+ $danger-dark,
182
+ $danger-hover,
183
+ $danger-active,
184
+ $danger-invert,
185
+ $danger-box-shadow,
186
+ $danger-background-glow-high-contrast
187
+ )
188
+ ) !default;
189
+
190
+ // Combined framework and brand colors for the array used in all the loops
191
+
192
+ // Color indexes, for use in color loops.
193
+
194
+ $color-index-base: 1;
195
+ $color-index-background: 2;
196
+ $color-index-dark: 3;
197
+ $color-index-hover: 4;
198
+ $color-index-active: 5;
199
+ $color-index-invert: 6;
200
+ $color-index-box-shadow: 7;
201
+ $color-index-background-glow-high-contrast: 8;
202
+
203
+ // example implementation of a color loop
204
+
205
+ // @each $name, $color-set in $colors {
206
+ // $base: nth($color-set, $color-index-base);
207
+ // $background: nth($color-set, $color-index-background);
208
+ // $heavy: nth($color-set, $color-index-dark);
209
+ // $hover: nth($color-set, $color-index-hover);
210
+ // $active: nth($color-set, $color-index-active);
211
+ // $invert: nth($color-set, $color-index-invert);
212
+ // $box-shadow: nth($color-set, $color-index-box-shadow);
213
+ //}
214
+
215
+ //@end-sass-export-section