@graupl/graupl 1.0.0-alpha.0 → 1.0.0-alpha.2

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.
@@ -11,3 +11,4 @@ $columns-count: 3 !default;
11
11
  $columns-disable-width: 48ch !default;
12
12
  $columns-min-count: 1 !default;
13
13
  $columns-max-count: 4 !default;
14
+ $columns-span: 1 !default;
@@ -13,12 +13,20 @@
13
13
  repeat(auto-fit, minmax(#{$columns-min-width}, #{$columns-max-width}))
14
14
  );
15
15
  gap: $columns-gap;
16
+
17
+ > * {
18
+ grid-column: span $columns-span;
19
+ }
16
20
  }
17
21
 
18
22
  @for $i from defaults.$columns-min-count through defaults.$columns-max-count {
19
23
  .columns-#{$i} {
20
24
  --#{defaults.$prefix}-columns-count: #{$i};
21
25
  }
26
+
27
+ .span-#{$i} {
28
+ --#{defaults.$prefix}-columns-span: #{$i};
29
+ }
22
30
  }
23
31
 
24
32
  // Disable columns on small screens to avoid horizontal bleeding.
@@ -18,3 +18,7 @@ $columns-max-width: var(
18
18
  --#{defaults.$prefix}-columns-max-width,
19
19
  #{defaults.$columns-max-width}
20
20
  );
21
+ $columns-span: var(
22
+ --#{defaults.$prefix}-columns-span,
23
+ #{defaults.$columns-span}
24
+ );
@@ -7,7 +7,7 @@
7
7
  $focus-width: var(--#{defaults.$prefix}-focus-width, #{base.$border-width});
8
8
  $focus-outline-color: var(
9
9
  --#{defaults.$prefix}-focus-outline-color,
10
- #{theme.$theme-active--dark}
10
+ #{theme.$theme-active--primary--900}
11
11
  );
12
12
  $focus-outline-width: var(
13
13
  --#{defaults.$prefix}-focus-outline-width,
@@ -23,7 +23,7 @@ $focus-outline-offset: var(
23
23
  );
24
24
  $focus-box-shadow-color: var(
25
25
  --#{defaults.$prefix}-focus-box-shadow-color,
26
- #{theme.$theme-active--light}
26
+ #{theme.$theme-active--primary--100}
27
27
  );
28
28
  $focus-box-shadow-style: var(
29
29
  --#{defaults.$prefix}-focus-box-shadow-style,
@@ -20,6 +20,17 @@ $primary: (
20
20
  900: hsl(219deg 100% 10%),
21
21
  ) !default;
22
22
  $secondary: (
23
+ 100: hsl(235deg 40% 95%),
24
+ 200: hsl(235deg 30% 80%),
25
+ 300: hsl(235deg 20% 65%),
26
+ 400: hsl(235deg 15% 55%),
27
+ 500: hsl(235deg 15% 50%),
28
+ 600: hsl(235deg 15% 45%),
29
+ 700: hsl(235deg 20% 35%),
30
+ 800: hsl(235deg 30% 20%),
31
+ 900: hsl(235deg 40% 10%),
32
+ ) !default;
33
+ $tertiary: (
23
34
  100: hsl(340deg 85% 95%),
24
35
  200: hsl(340deg 75% 80%),
25
36
  300: hsl(340deg 65% 65%),
@@ -7,29 +7,85 @@
7
7
 
8
8
  @include layer(theme) {
9
9
  :root {
10
- background: $theme-active--light;
11
- color: $theme-active--dark;
10
+ background: $theme-active--primary--100;
11
+ color: $theme-active--primary--900;
12
12
  font-family: $font-family;
13
13
  font-size: $font-size;
14
14
  }
15
15
 
16
16
  // Set the active theme for dark mode.
17
17
  .dark-mode {
18
- --#{defaults.$prefix}-theme-active--primary: #{$theme-dark--primary};
19
- --#{defaults.$prefix}-theme-active--primary--dark: #{$theme-dark--primary--dark};
20
- --#{defaults.$prefix}-theme-active--primary--light: #{$theme-dark--primary--light};
21
- --#{defaults.$prefix}-theme-active--secondary: #{$theme-dark--secondary};
22
- --#{defaults.$prefix}-theme-active--light: #{$theme-dark--light};
23
- --#{defaults.$prefix}-theme-active--dark: #{$theme-dark--dark};
18
+ // Primary colours.
19
+ --#{defaults.$prefix}-theme-active--primary--100: #{$theme-dark--primary--100};
20
+ --#{defaults.$prefix}-theme-active--primary--200: #{$theme-dark--primary--200};
21
+ --#{defaults.$prefix}-theme-active--primary--300: #{$theme-dark--primary--300};
22
+ --#{defaults.$prefix}-theme-active--primary--400: #{$theme-dark--primary--400};
23
+ --#{defaults.$prefix}-theme-active--primary--500: #{$theme-dark--primary--500};
24
+ --#{defaults.$prefix}-theme-active--primary--600: #{$theme-dark--primary--600};
25
+ --#{defaults.$prefix}-theme-active--primary--700: #{$theme-dark--primary--700};
26
+ --#{defaults.$prefix}-theme-active--primary--800: #{$theme-dark--primary--800};
27
+ --#{defaults.$prefix}-theme-active--primary--900: #{$theme-dark--primary--900};
28
+
29
+ // Secondary colours.
30
+ --#{defaults.$prefix}-theme-active--secondary--100: #{$theme-dark--secondary--100};
31
+ --#{defaults.$prefix}-theme-active--secondary--200: #{$theme-dark--secondary--200};
32
+ --#{defaults.$prefix}-theme-active--secondary--300: #{$theme-dark--secondary--300};
33
+ --#{defaults.$prefix}-theme-active--secondary--400: #{$theme-dark--secondary--400};
34
+ --#{defaults.$prefix}-theme-active--secondary--500: #{$theme-dark--secondary--500};
35
+ --#{defaults.$prefix}-theme-active--secondary--600: #{$theme-dark--secondary--600};
36
+ --#{defaults.$prefix}-theme-active--secondary--700: #{$theme-dark--secondary--700};
37
+ --#{defaults.$prefix}-theme-active--secondary--800: #{$theme-dark--secondary--800};
38
+ --#{defaults.$prefix}-theme-active--secondary--900: #{$theme-dark--secondary--900};
39
+
40
+ // Tertiary colours.
41
+ --#{defaults.$prefix}-theme-active--tertiary--100: #{$theme-dark--tertiary--100};
42
+ --#{defaults.$prefix}-theme-active--tertiary--200: #{$theme-dark--tertiary--200};
43
+ --#{defaults.$prefix}-theme-active--tertiary--300: #{$theme-dark--tertiary--300};
44
+ --#{defaults.$prefix}-theme-active--tertiary--400: #{$theme-dark--tertiary--400};
45
+ --#{defaults.$prefix}-theme-active--tertiary--500: #{$theme-dark--tertiary--500};
46
+ --#{defaults.$prefix}-theme-active--tertiary--600: #{$theme-dark--tertiary--600};
47
+ --#{defaults.$prefix}-theme-active--tertiary--700: #{$theme-dark--tertiary--700};
48
+ --#{defaults.$prefix}-theme-active--tertiary--800: #{$theme-dark--tertiary--800};
49
+ --#{defaults.$prefix}-theme-active--tertiary--900: #{$theme-dark--tertiary--900};
50
+
51
+ color-scheme: dark;
24
52
  }
25
53
 
26
54
  // Set the active theme for light mode.
27
55
  .light-mode {
28
- --#{defaults.$prefix}-theme-active--primary: #{$theme-light--primary};
29
- --#{defaults.$prefix}-theme-active--primary--dark: #{$theme-light--primary--dark};
30
- --#{defaults.$prefix}-theme-active--primary--light: #{$theme-light--primary--light};
31
- --#{defaults.$prefix}-theme-active--secondary: #{$theme-light--secondary};
32
- --#{defaults.$prefix}-theme-active--light: #{$theme-light--light};
33
- --#{defaults.$prefix}-theme-active--dark: #{$theme-light--dark};
56
+ // Primary colours.
57
+ --#{defaults.$prefix}-theme-active--primary--100: #{$theme-light--primary--100};
58
+ --#{defaults.$prefix}-theme-active--primary--200: #{$theme-light--primary--200};
59
+ --#{defaults.$prefix}-theme-active--primary--300: #{$theme-light--primary--300};
60
+ --#{defaults.$prefix}-theme-active--primary--400: #{$theme-light--primary--400};
61
+ --#{defaults.$prefix}-theme-active--primary--500: #{$theme-light--primary--500};
62
+ --#{defaults.$prefix}-theme-active--primary--600: #{$theme-light--primary--600};
63
+ --#{defaults.$prefix}-theme-active--primary--700: #{$theme-light--primary--700};
64
+ --#{defaults.$prefix}-theme-active--primary--800: #{$theme-light--primary--800};
65
+ --#{defaults.$prefix}-theme-active--primary--900: #{$theme-light--primary--900};
66
+
67
+ // Secondary colours.
68
+ --#{defaults.$prefix}-theme-active--secondary--100: #{$theme-light--secondary--100};
69
+ --#{defaults.$prefix}-theme-active--secondary--200: #{$theme-light--secondary--200};
70
+ --#{defaults.$prefix}-theme-active--secondary--300: #{$theme-light--secondary--300};
71
+ --#{defaults.$prefix}-theme-active--secondary--400: #{$theme-light--secondary--400};
72
+ --#{defaults.$prefix}-theme-active--secondary--500: #{$theme-light--secondary--500};
73
+ --#{defaults.$prefix}-theme-active--secondary--600: #{$theme-light--secondary--600};
74
+ --#{defaults.$prefix}-theme-active--secondary--700: #{$theme-light--secondary--700};
75
+ --#{defaults.$prefix}-theme-active--secondary--800: #{$theme-light--secondary--800};
76
+ --#{defaults.$prefix}-theme-active--secondary--900: #{$theme-light--secondary--900};
77
+
78
+ // Tertiary colours.
79
+ --#{defaults.$prefix}-theme-active--tertiary--100: #{$theme-light--tertiary--100};
80
+ --#{defaults.$prefix}-theme-active--tertiary--200: #{$theme-light--tertiary--200};
81
+ --#{defaults.$prefix}-theme-active--tertiary--300: #{$theme-light--tertiary--300};
82
+ --#{defaults.$prefix}-theme-active--tertiary--400: #{$theme-light--tertiary--400};
83
+ --#{defaults.$prefix}-theme-active--tertiary--500: #{$theme-light--tertiary--500};
84
+ --#{defaults.$prefix}-theme-active--tertiary--600: #{$theme-light--tertiary--600};
85
+ --#{defaults.$prefix}-theme-active--tertiary--700: #{$theme-light--tertiary--700};
86
+ --#{defaults.$prefix}-theme-active--tertiary--800: #{$theme-light--tertiary--800};
87
+ --#{defaults.$prefix}-theme-active--tertiary--900: #{$theme-light--tertiary--900};
88
+
89
+ color-scheme: light;
34
90
  }
35
91
  }
@@ -74,102 +74,396 @@ $secondary: (
74
74
  ),
75
75
  );
76
76
 
77
+ // Tertiary theme colours.
78
+ $tertiary: (
79
+ 100:
80
+ var(
81
+ --#{defaults.$prefix}-tertiary--100,
82
+ #{map.get(defaults.$tertiary, 100)}
83
+ ),
84
+ 200:
85
+ var(
86
+ --#{defaults.$prefix}-tertiary--200,
87
+ #{map.get(defaults.$tertiary, 200)}
88
+ ),
89
+ 300:
90
+ var(
91
+ --#{defaults.$prefix}-tertiary--300,
92
+ #{map.get(defaults.$tertiary, 300)}
93
+ ),
94
+ 400:
95
+ var(
96
+ --#{defaults.$prefix}-tertiary--400,
97
+ #{map.get(defaults.$tertiary, 400)}
98
+ ),
99
+ 500:
100
+ var(
101
+ --#{defaults.$prefix}-tertiary--500,
102
+ #{map.get(defaults.$tertiary, 500)}
103
+ ),
104
+ 600:
105
+ var(
106
+ --#{defaults.$prefix}-tertiary--600,
107
+ #{map.get(defaults.$tertiary, 600)}
108
+ ),
109
+ 700:
110
+ var(
111
+ --#{defaults.$prefix}-tertiary--700,
112
+ #{map.get(defaults.$tertiary, 700)}
113
+ ),
114
+ 800:
115
+ var(
116
+ --#{defaults.$prefix}-tertiary--800,
117
+ #{map.get(defaults.$tertiary, 800)}
118
+ ),
119
+ 900:
120
+ var(
121
+ --#{defaults.$prefix}-tertiary--900,
122
+ #{map.get(defaults.$tertiary, 900)}
123
+ ),
124
+ );
125
+
77
126
  // Theme colours.
78
- $theme-light--primary: var(
79
- --#{defaults.$prefix}-theme-light--primary,
127
+ // Colour primary - light.
128
+ $theme-light--primary--100: var(
129
+ --#{defaults.$prefix}-theme-light--primary--100,
130
+ #{map.get($primary, 100)}
131
+ );
132
+ $theme-light--primary--200: var(
133
+ --#{defaults.$prefix}-theme-light--primary--200,
134
+ #{map.get($primary, 200)}
135
+ );
136
+ $theme-light--primary--300: var(
137
+ --#{defaults.$prefix}-theme-light--primary--300,
138
+ #{map.get($primary, 300)}
139
+ );
140
+ $theme-light--primary--400: var(
141
+ --#{defaults.$prefix}-theme-light--primary--400,
142
+ #{map.get($primary, 400)}
143
+ );
144
+ $theme-light--primary--500: var(
145
+ --#{defaults.$prefix}-theme-light--primary--500,
146
+ #{map.get($primary, 500)}
147
+ );
148
+ $theme-light--primary--600: var(
149
+ --#{defaults.$prefix}-theme-light--primary--600,
150
+ #{map.get($primary, 600)}
151
+ );
152
+ $theme-light--primary--700: var(
153
+ --#{defaults.$prefix}-theme-light--primary--700,
80
154
  #{map.get($primary, 700)}
81
155
  );
82
- $theme-light--primary--dark: var(
83
- --#{defaults.$prefix}-theme-light--primary--dark,
156
+ $theme-light--primary--800: var(
157
+ --#{defaults.$prefix}-theme-light--primary--800,
84
158
  #{map.get($primary, 800)}
85
159
  );
86
- $theme-light--primary--light: var(
87
- --#{defaults.$prefix}-theme-light--primary--light,
160
+ $theme-light--primary--900: var(
161
+ --#{defaults.$prefix}-theme-light--primary--900,
162
+ #{map.get($primary, 900)}
163
+ );
164
+
165
+ // Colour primary - dark.
166
+ $theme-dark--primary--100: var(
167
+ --#{defaults.$prefix}-theme-dark--primary--100,
168
+ #{map.get($primary, 900)}
169
+ );
170
+ $theme-dark--primary--200: var(
171
+ --#{defaults.$prefix}-theme-dark--primary--200,
172
+ #{map.get($primary, 800)}
173
+ );
174
+ $theme-dark--primary--300: var(
175
+ --#{defaults.$prefix}-theme-dark--primary--300,
176
+ #{map.get($primary, 700)}
177
+ );
178
+ $theme-dark--primary--400: var(
179
+ --#{defaults.$prefix}-theme-dark--primary--400,
88
180
  #{map.get($primary, 600)}
89
181
  );
90
- $theme-dark--primary: var(
91
- --#{defaults.$prefix}-theme-dark--primary,
182
+ $theme-dark--primary--500: var(
183
+ --#{defaults.$prefix}-theme-dark--primary--500,
184
+ #{map.get($primary, 500)}
185
+ );
186
+ $theme-dark--primary--600: var(
187
+ --#{defaults.$prefix}-theme-dark--primary--600,
188
+ #{map.get($primary, 400)}
189
+ );
190
+ $theme-dark--primary--700: var(
191
+ --#{defaults.$prefix}-theme-dark--primary--700,
92
192
  #{map.get($primary, 300)}
93
193
  );
94
- $theme-dark--primary--dark: var(
95
- --#{defaults.$prefix}-theme-dark--primary--dark,
194
+ $theme-dark--primary--800: var(
195
+ --#{defaults.$prefix}-theme-dark--primary--800,
96
196
  #{map.get($primary, 200)}
97
197
  );
98
- $theme-dark--primary--light: var(
99
- --#{defaults.$prefix}-theme-dark--primary--light,
100
- #{map.get($primary, 400)}
198
+ $theme-dark--primary--900: var(
199
+ --#{defaults.$prefix}-theme-dark--primary--900,
200
+ #{map.get($primary, 100)}
201
+ );
202
+
203
+ // Colour primary - active.
204
+ $theme-active--primary--100: var(
205
+ --#{defaults.$prefix}-theme-active--primary--100,
206
+ #{$theme-light--primary--100}
207
+ );
208
+ $theme-active--primary--200: var(
209
+ --#{defaults.$prefix}-theme-active--primary--200,
210
+ #{$theme-light--primary--200}
211
+ );
212
+ $theme-active--primary--300: var(
213
+ --#{defaults.$prefix}-theme-active--primary--300,
214
+ #{$theme-light--primary--300}
215
+ );
216
+ $theme-active--primary--400: var(
217
+ --#{defaults.$prefix}-theme-active--primary--400,
218
+ #{$theme-light--primary--400}
101
219
  );
102
- $theme-active--primary: var(
103
- --#{defaults.$prefix}-theme-active--primary,
104
- #{$theme-light--primary}
220
+ $theme-active--primary--500: var(
221
+ --#{defaults.$prefix}-theme-active--primary--500,
222
+ #{$theme-light--primary--500}
105
223
  );
106
- $theme-active--primary--dark: var(
107
- --#{defaults.$prefix}-theme-active--primary--dark,
108
- #{$theme-light--primary--dark}
224
+ $theme-active--primary--600: var(
225
+ --#{defaults.$prefix}-theme-active--primary--600,
226
+ #{$theme-light--primary--600}
109
227
  );
110
- $theme-active--primary--light: var(
111
- --#{defaults.$prefix}-theme-active--primary--light,
112
- #{$theme-light--primary--light}
228
+ $theme-active--primary--700: var(
229
+ --#{defaults.$prefix}-theme-active--primary--700,
230
+ #{$theme-light--primary--700}
113
231
  );
114
- $theme-light--secondary: var(
115
- --#{defaults.$prefix}-theme-light--secondary,
232
+ $theme-active--primary--800: var(
233
+ --#{defaults.$prefix}-theme-active--primary--800,
234
+ #{$theme-light--primary--800}
235
+ );
236
+ $theme-active--primary--900: var(
237
+ --#{defaults.$prefix}-theme-active--primary--900,
238
+ #{$theme-light--primary--900}
239
+ );
240
+
241
+ // Color secondary - light.
242
+ $theme-light--secondary--100: var(
243
+ --#{defaults.$prefix}-theme-light--secondary--100,
244
+ #{map.get($secondary, 100)}
245
+ );
246
+ $theme-light--secondary--200: var(
247
+ --#{defaults.$prefix}-theme-light--secondary--200,
248
+ #{map.get($secondary, 200)}
249
+ );
250
+ $theme-light--secondary--300: var(
251
+ --#{defaults.$prefix}-theme-light--secondary--300,
252
+ #{map.get($secondary, 300)}
253
+ );
254
+ $theme-light--secondary--400: var(
255
+ --#{defaults.$prefix}-theme-light--secondary--400,
256
+ #{map.get($secondary, 400)}
257
+ );
258
+ $theme-light--secondary--500: var(
259
+ --#{defaults.$prefix}-theme-light--secondary--500,
260
+ #{map.get($secondary, 500)}
261
+ );
262
+ $theme-light--secondary--600: var(
263
+ --#{defaults.$prefix}-theme-light--secondary--600,
264
+ #{map.get($secondary, 600)}
265
+ );
266
+ $theme-light--secondary--700: var(
267
+ --#{defaults.$prefix}-theme-light--secondary--700,
116
268
  #{map.get($secondary, 700)}
117
269
  );
118
- $theme-light--secondary--dark: var(
119
- --#{defaults.$prefix}-theme-light--secondary--dark,
270
+ $theme-light--secondary--800: var(
271
+ --#{defaults.$prefix}-theme-light--secondary--800,
272
+ #{map.get($secondary, 800)}
273
+ );
274
+ $theme-light--secondary--900: var(
275
+ --#{defaults.$prefix}-theme-light--secondary--900,
276
+ #{map.get($secondary, 900)}
277
+ );
278
+
279
+ // Colour secondary - dark.
280
+ $theme-dark--secondary--100: var(
281
+ --#{defaults.$prefix}-theme-dark--secondary--100,
282
+ #{map.get($secondary, 900)}
283
+ );
284
+ $theme-dark--secondary--200: var(
285
+ --#{defaults.$prefix}-theme-dark--secondary--200,
120
286
  #{map.get($secondary, 800)}
121
287
  );
122
- $theme-light--secondary--light: var(
123
- --#{defaults.$prefix}-theme-light--secondary--light,
288
+ $theme-dark--secondary--300: var(
289
+ --#{defaults.$prefix}-theme-dark--secondary--300,
290
+ #{map.get($secondary, 700)}
291
+ );
292
+ $theme-dark--secondary--400: var(
293
+ --#{defaults.$prefix}-theme-dark--secondary--400,
124
294
  #{map.get($secondary, 600)}
125
295
  );
126
- $theme-dark--secondary: var(
127
- --#{defaults.$prefix}-theme-dark--secondary,
296
+ $theme-dark--secondary--500: var(
297
+ --#{defaults.$prefix}-theme-dark--secondary--500,
298
+ #{map.get($secondary, 500)}
299
+ );
300
+ $theme-dark--secondary--600: var(
301
+ --#{defaults.$prefix}-theme-dark--secondary--600,
302
+ #{map.get($secondary, 400)}
303
+ );
304
+ $theme-dark--secondary--700: var(
305
+ --#{defaults.$prefix}-theme-dark--secondary--700,
128
306
  #{map.get($secondary, 300)}
129
307
  );
130
- $theme-dark--secondary--dark: var(
131
- --#{defaults.$prefix}-theme-dark--secondary--dark,
308
+ $theme-dark--secondary--800: var(
309
+ --#{defaults.$prefix}-theme-dark--secondary--800,
132
310
  #{map.get($secondary, 200)}
133
311
  );
134
- $theme-dark--secondary--light: var(
135
- --#{defaults.$prefix}-theme-dark--secondary--light,
136
- #{map.get($secondary, 400)}
312
+ $theme-dark--secondary--900: var(
313
+ --#{defaults.$prefix}-theme-dark--secondary--900,
314
+ #{map.get($secondary, 100)}
137
315
  );
138
- $theme-active--secondary: var(
139
- --#{defaults.$prefix}-theme-active--secondary,
140
- #{$theme-light--secondary}
316
+
317
+ // Colour secondary - active.
318
+ $theme-active--secondary--100: var(
319
+ --#{defaults.$prefix}-theme-active--secondary--100,
320
+ #{$theme-light--secondary--100}
141
321
  );
142
- $theme-active--secondary--dark: var(
143
- --#{defaults.$prefix}-theme-active--secondary--dark,
144
- #{$theme-light--secondary--dark}
322
+ $theme-active--secondary--200: var(
323
+ --#{defaults.$prefix}-theme-active--secondary--200,
324
+ #{$theme-light--secondary--200}
145
325
  );
146
- $theme-active--secondary--light: var(
147
- --#{defaults.$prefix}-theme-active--secondary--light,
148
- #{$theme-light--secondary--light}
326
+ $theme-active--secondary--300: var(
327
+ --#{defaults.$prefix}-theme-active--secondary--300,
328
+ #{$theme-light--secondary--300}
149
329
  );
150
- $theme-light--light: var(
151
- --#{defaults.$prefix}-theme-light--light,
152
- #{map.get($primary, 100)}
330
+ $theme-active--secondary--400: var(
331
+ --#{defaults.$prefix}-theme-active--secondary--400,
332
+ #{$theme-light--secondary--400}
153
333
  );
154
- $theme-dark--light: var(
155
- --#{defaults.$prefix}-theme-dark--light,
156
- #{map.get($primary, 900)}
334
+ $theme-active--secondary--500: var(
335
+ --#{defaults.$prefix}-theme-active--secondary--500,
336
+ #{$theme-light--secondary--500}
157
337
  );
158
- $theme-active--light: var(
159
- --#{defaults.$prefix}-theme-active--light,
160
- #{$theme-light--light}
338
+ $theme-active--secondary--600: var(
339
+ --#{defaults.$prefix}-theme-active--secondary--600,
340
+ #{$theme-light--secondary--600}
161
341
  );
162
- $theme-light--dark: var(
163
- --#{defaults.$prefix}-theme-light--dark,
164
- #{map.get($primary, 900)}
342
+ $theme-active--secondary--700: var(
343
+ --#{defaults.$prefix}-theme-active--secondary--700,
344
+ #{$theme-light--secondary--700}
165
345
  );
166
- $theme-dark--dark: var(
167
- --#{defaults.$prefix}-theme-dark--dark,
168
- #{map.get($primary, 100)}
346
+ $theme-active--secondary--800: var(
347
+ --#{defaults.$prefix}-theme-active--secondary--800,
348
+ #{$theme-light--secondary--800}
349
+ );
350
+ $theme-active--secondary--900: var(
351
+ --#{defaults.$prefix}-theme-active--secondary--900,
352
+ #{$theme-light--secondary--900}
353
+ );
354
+
355
+ // Colour tertiary - light.
356
+ $theme-light--tertiary--100: var(
357
+ --#{defaults.$prefix}-theme-light--tertiary--100,
358
+ #{map.get($tertiary, 100)}
359
+ );
360
+ $theme-light--tertiary--200: var(
361
+ --#{defaults.$prefix}-theme-light--tertiary--200,
362
+ #{map.get($tertiary, 200)}
363
+ );
364
+ $theme-light--tertiary--300: var(
365
+ --#{defaults.$prefix}-theme-light--tertiary--300,
366
+ #{map.get($tertiary, 300)}
367
+ );
368
+ $theme-light--tertiary--400: var(
369
+ --#{defaults.$prefix}-theme-light--tertiary--400,
370
+ #{map.get($tertiary, 400)}
371
+ );
372
+ $theme-light--tertiary--500: var(
373
+ --#{defaults.$prefix}-theme-light--tertiary--500,
374
+ #{map.get($tertiary, 500)}
375
+ );
376
+ $theme-light--tertiary--600: var(
377
+ --#{defaults.$prefix}-theme-light--tertiary--600,
378
+ #{map.get($tertiary, 600)}
379
+ );
380
+ $theme-light--tertiary--700: var(
381
+ --#{defaults.$prefix}-theme-light--tertiary--700,
382
+ #{map.get($tertiary, 700)}
383
+ );
384
+ $theme-light--tertiary--800: var(
385
+ --#{defaults.$prefix}-theme-light--tertiary--800,
386
+ #{map.get($tertiary, 800)}
387
+ );
388
+ $theme-light--tertiary--900: var(
389
+ --#{defaults.$prefix}-theme-light--tertiary--900,
390
+ #{map.get($tertiary, 900)}
391
+ );
392
+
393
+ // Colour tertiary - dark.
394
+ $theme-dark--tertiary--100: var(
395
+ --#{defaults.$prefix}-theme-dark--tertiary--100,
396
+ #{map.get($tertiary, 900)}
397
+ );
398
+ $theme-dark--tertiary--200: var(
399
+ --#{defaults.$prefix}-theme-dark--tertiary--200,
400
+ #{map.get($tertiary, 800)}
401
+ );
402
+ $theme-dark--tertiary--300: var(
403
+ --#{defaults.$prefix}-theme-dark--tertiary--300,
404
+ #{map.get($tertiary, 700)}
405
+ );
406
+ $theme-dark--tertiary--400: var(
407
+ --#{defaults.$prefix}-theme-dark--tertiary--400,
408
+ #{map.get($tertiary, 600)}
409
+ );
410
+ $theme-dark--tertiary--500: var(
411
+ --#{defaults.$prefix}-theme-dark--tertiary--500,
412
+ #{map.get($tertiary, 500)}
413
+ );
414
+ $theme-dark--tertiary--600: var(
415
+ --#{defaults.$prefix}-theme-dark--tertiary--600,
416
+ #{map.get($tertiary, 400)}
417
+ );
418
+ $theme-dark--tertiary--700: var(
419
+ --#{defaults.$prefix}-theme-dark--tertiary--700,
420
+ #{map.get($tertiary, 300)}
421
+ );
422
+ $theme-dark--tertiary--800: var(
423
+ --#{defaults.$prefix}-theme-dark--tertiary--800,
424
+ #{map.get($tertiary, 200)}
425
+ );
426
+ $theme-dark--tertiary--900: var(
427
+ --#{defaults.$prefix}-theme-dark--tertiary--900,
428
+ #{map.get($tertiary, 100)}
429
+ );
430
+
431
+ // Colour tertiary - active.
432
+ $theme-active--tertiary--100: var(
433
+ --#{defaults.$prefix}-theme-active--tertiary--100,
434
+ #{$theme-light--tertiary--100}
435
+ );
436
+ $theme-active--tertiary--200: var(
437
+ --#{defaults.$prefix}-theme-active--tertiary--200,
438
+ #{$theme-light--tertiary--200}
439
+ );
440
+ $theme-active--tertiary--300: var(
441
+ --#{defaults.$prefix}-theme-active--tertiary--300,
442
+ #{$theme-light--tertiary--300}
443
+ );
444
+ $theme-active--tertiary--400: var(
445
+ --#{defaults.$prefix}-theme-active--tertiary--400,
446
+ #{$theme-light--tertiary--400}
447
+ );
448
+ $theme-active--tertiary--500: var(
449
+ --#{defaults.$prefix}-theme-active--tertiary--500,
450
+ #{$theme-light--tertiary--500}
451
+ );
452
+ $theme-active--tertiary--600: var(
453
+ --#{defaults.$prefix}-theme-active--tertiary--600,
454
+ #{$theme-light--tertiary--600}
455
+ );
456
+ $theme-active--tertiary--700: var(
457
+ --#{defaults.$prefix}-theme-active--tertiary--700,
458
+ #{$theme-light--tertiary--700}
459
+ );
460
+ $theme-active--tertiary--800: var(
461
+ --#{defaults.$prefix}-theme-active--tertiary--800,
462
+ #{$theme-light--tertiary--800}
169
463
  );
170
- $theme-active--dark: var(
171
- --#{defaults.$prefix}-theme-active--dark,
172
- #{$theme-light--dark}
464
+ $theme-active--tertiary--900: var(
465
+ --#{defaults.$prefix}-theme-active--tertiary--900,
466
+ #{$theme-light--tertiary--900}
173
467
  );
174
468
 
175
469
  // Font properties.