@apolitical/component-library 10.4.3-db.1 → 10.4.4
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 +1 -1
- package/style.css +1 -1
- package/styles/variables/colors/_colors.scss +21 -1
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
$default-colors: (
|
|
7
7
|
'white': rgb(255 255 255 / 100%),
|
|
8
8
|
'black': rgb(0 0 0 / 100%),
|
|
9
|
-
'sand': rgb(252
|
|
9
|
+
'sand': rgb(252 248 243 / 100%),
|
|
10
10
|
'b50': rgb(248 247 255 / 100%),
|
|
11
11
|
'b100': rgb(222 220 250 / 100%),
|
|
12
12
|
'b200': rgb(197 194 245 / 100%),
|
|
@@ -61,4 +61,24 @@ $default-colors: (
|
|
|
61
61
|
'warning50': rgb(255 242 230 / 100%),
|
|
62
62
|
'warning500': rgb(220 121 29 / 100%),
|
|
63
63
|
'warning700': rgb(137 71 11 / 100%),
|
|
64
|
+
// Figma "New Design Styles V0 WIP" — warm neutrals
|
|
65
|
+
'warm-900': rgb(32 28 28 / 100%),
|
|
66
|
+
'warm-800': rgb(46 43 40 / 100%),
|
|
67
|
+
'warm-700': rgb(72 69 66 / 100%),
|
|
68
|
+
'warm-600': rgb(89 87 84 / 100%),
|
|
69
|
+
'warm-500': rgb(123 120 117 / 100%),
|
|
70
|
+
'warm-400': rgb(166 161 156 / 100%),
|
|
71
|
+
'warm-300': rgb(199 194 189 / 100%),
|
|
72
|
+
'warm-200': rgb(222 219 216 / 100%),
|
|
73
|
+
'warm-100': rgb(239 237 234 / 100%),
|
|
74
|
+
'warm-50': rgb(249 247 246 / 100%),
|
|
75
|
+
// Figma "New Sand"
|
|
76
|
+
'sand-400': rgb(213 195 177 / 100%),
|
|
77
|
+
'sand-300': rgb(221 207 193 / 100%),
|
|
78
|
+
'sand-200': rgb(235 225 213 / 100%),
|
|
79
|
+
'sand-100': rgb(245 239 229 / 100%),
|
|
80
|
+
'sand-50': rgb(252 248 243 / 100%),
|
|
81
|
+
// Figma "New Green" — background tints
|
|
82
|
+
'sage-100': rgb(221 239 226 / 100%),
|
|
83
|
+
'sage-50': rgb(239 247 241 / 100%),
|
|
64
84
|
);
|