@appscode/design-system 2.0.35-alpha.5 → 2.0.35-alpha.6
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
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
$primary-hue: 149;
|
|
2
|
+
$primary-saturation: 100%;
|
|
3
|
+
$primary-5: hsl($primary-hue, $primary-saturation, 5%);
|
|
4
|
+
$primary-10: hsl($primary-hue, $primary-saturation, 10%);
|
|
5
|
+
$primary-20: hsl($primary-hue, $primary-saturation, 20%);
|
|
6
|
+
$primary: hsl($primary-hue, $primary-saturation, 30%);
|
|
7
|
+
$primary-30: hsl($primary-hue, $primary-saturation, 30%);
|
|
8
|
+
$primary-40: hsl($primary-hue, $primary-saturation, 40%);
|
|
9
|
+
$primary-50: hsl($primary-hue, $primary-saturation, 50%);
|
|
10
|
+
$primary-60: hsl($primary-hue, $primary-saturation, 60%);
|
|
11
|
+
$primary-70: hsl($primary-hue, $primary-saturation, 70%);
|
|
12
|
+
$primary-80: hsl($primary-hue, $primary-saturation, 80%);
|
|
13
|
+
$primary-90: hsl($primary-hue, $primary-saturation, 90%);
|
|
14
|
+
$primary-93: hsl($primary-hue, $primary-saturation, 93%);
|
|
15
|
+
$primary-95: hsl($primary-hue, $primary-saturation, 95%);
|
|
16
|
+
$primary-97: hsl($primary-hue, $primary-saturation, 97%);
|
|
17
|
+
|
|
18
|
+
$primary-light-grey: hsl($primary-hue, 30%, 96%);
|
|
19
|
+
$primary-dark-grey: hsl($primary-hue, 30%, 10%);
|
|
20
|
+
|
|
21
|
+
$secondary-hue: 197;
|
|
22
|
+
$secondary-saturation: 50%;
|
|
23
|
+
$secondary-5: hsl($secondary-hue, $secondary-saturation, 5%);
|
|
24
|
+
$secondary-10: hsl($secondary-hue, $secondary-saturation, 10%);
|
|
25
|
+
$secondary-20: hsl($secondary-hue, $secondary-saturation, 20%);
|
|
26
|
+
$secondary: hsl($secondary-hue, $secondary-saturation, 20%);
|
|
27
|
+
$secondary-30: hsl($secondary-hue, $secondary-saturation, 30%);
|
|
28
|
+
$secondary-40: hsl($secondary-hue, $secondary-saturation, 40%);
|
|
29
|
+
$secondary-50: hsl($secondary-hue, $secondary-saturation, 50%);
|
|
30
|
+
$secondary-60: hsl($secondary-hue, $secondary-saturation, 60%);
|
|
31
|
+
$secondary-70: hsl($secondary-hue, $secondary-saturation, 70%);
|
|
32
|
+
$secondary-80: hsl($secondary-hue, $secondary-saturation, 80%);
|
|
33
|
+
$secondary-90: hsl($secondary-hue, $secondary-saturation, 90%);
|
|
34
|
+
$secondary-93: hsl($secondary-hue, $secondary-saturation, 93%);
|
|
35
|
+
$secondary-95: hsl($secondary-hue, $secondary-saturation, 95%);
|
|
36
|
+
$secondary-97: hsl($secondary-hue, $secondary-saturation, 97%);
|
|
37
|
+
|
|
38
|
+
$secondary-light-grey: hsl($secondary-hue, 30%, 96%);
|
|
39
|
+
$secondary-dark-grey: hsl($secondary-hue, 30%, 10%);
|
|
40
|
+
|
|
41
|
+
$color-text: hsl($secondary-hue, 10%, 35%);
|
|
42
|
+
$color-heading: hsl($secondary-hue, 10%, 10%);
|
|
43
|
+
$color-label: hsl($secondary-hue, 20%, 50%);
|
|
44
|
+
$color-link: hsl($secondary-hue, 40%, 20%);
|
|
45
|
+
$color-border-light: hsl($primary-hue, 40%, 95%);
|
|
46
|
+
$color-border: hsl($primary-hue, 50%, 90%);
|
|
47
|
+
$color-border-dark: hsl($primary-hue, 10%, 80%);
|