@appscode/design-system 2.17.60-alpha-1 → 2.17.60-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.
package/package.json
CHANGED
|
@@ -8,9 +8,10 @@ $white-100: hsl(0, 0%, 100%);
|
|
|
8
8
|
$black-100: hsl(0, 0%, 0%);
|
|
9
9
|
|
|
10
10
|
// primary color guides
|
|
11
|
-
|
|
12
|
-
$primary-
|
|
13
|
-
$primary-
|
|
11
|
+
// Default values (can be overridden via CSS custom properties at runtime)
|
|
12
|
+
$primary-hue: 149;
|
|
13
|
+
$primary-saturation: 100%;
|
|
14
|
+
$primary-light: 30%;
|
|
14
15
|
// $theme-mode: var(--theme-mode);
|
|
15
16
|
|
|
16
17
|
$primary-5: hsl($primary-hue, $primary-saturation, 5%);
|
|
@@ -33,9 +34,10 @@ $primary-dark-grey: hsl($primary-hue, 10%, 10%);
|
|
|
33
34
|
$primary-light-gray: hsl($primary-hue, 10%, 96%);
|
|
34
35
|
$primary-dark-gray: hsl($primary-hue, 10%, 10%);
|
|
35
36
|
|
|
36
|
-
|
|
37
|
-
$secondary-
|
|
38
|
-
$secondary-
|
|
37
|
+
// Default values for secondary colors (can be overridden via CSS custom properties at runtime)
|
|
38
|
+
$secondary-hue: 217;
|
|
39
|
+
$secondary-saturation: 71%;
|
|
40
|
+
$secondary-light: 50%;
|
|
39
41
|
$secondary-5: hsl($secondary-hue, $secondary-saturation, 5%);
|
|
40
42
|
$secondary-10: hsl($secondary-hue, $secondary-saturation, 10%);
|
|
41
43
|
$ac-secondary: hsl($secondary-hue, $secondary-saturation, $secondary-light);
|