@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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@appscode/design-system",
3
- "version": "2.17.60-alpha-1",
3
+ "version": "2.17.60-alpha-2",
4
4
  "description": "A design system for Appscode websites and dashboards made using Bulma",
5
5
  "main": "main.scss",
6
6
  "scripts": {
@@ -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
- $primary-hue: var(--primary-hue);
12
- $primary-saturation: var(--primary-saturation);
13
- $primary-light: var(--primary-light);
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
- $secondary-hue: var(--secondary-hue);
37
- $secondary-saturation: var(--secondary-saturation);
38
- $secondary-light: var(--secondary-light);
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);