@carefirst/library 6.3.3 → 6.3.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/public/styles/colors.scss +4 -3
- package/public/styles/font.scss +12 -0
package/package.json
CHANGED
|
@@ -6,6 +6,7 @@
|
|
|
6
6
|
--cf-app-color-secondary: #80858a;
|
|
7
7
|
--cf-app-color-white: #fcfcfc;
|
|
8
8
|
--cf-app-color-off-white: #fcfaf9;
|
|
9
|
+
--cf-app-background-light: #fff;
|
|
9
10
|
--cf-app-background-dark: #252525;
|
|
10
11
|
--cf-app-color-accent: #3fa3db;
|
|
11
12
|
--cf-app-color-accent-25: color-mix(in srgb, var(--cf-app-color-accent) 25%, #fff);
|
|
@@ -14,12 +15,12 @@
|
|
|
14
15
|
--cf-app-system-color-success-100: #61c453;
|
|
15
16
|
--cf-app-system-color-success-50: #c1f4bb;
|
|
16
17
|
--cf-app-system-color-success-25: #e6ffe3;
|
|
17
|
-
--cf-app-system-color-error-100: #ff3a69;
|
|
18
|
-
--cf-app-system-color-error-50: #ffc4d2;
|
|
19
|
-
--cf-app-system-color-error-25: #ffd8e1;
|
|
20
18
|
--cf-app-system-color-warning-100: #ffc71f;
|
|
21
19
|
--cf-app-system-color-warning-50: #fde18c;
|
|
22
20
|
--cf-app-system-color-warning-25: #fdedc2;
|
|
21
|
+
--cf-app-system-color-error-100: #ff3a69;
|
|
22
|
+
--cf-app-system-color-error-50: #ffc4d2;
|
|
23
|
+
--cf-app-system-color-error-25: #ffd8e1;
|
|
23
24
|
//--- Greys
|
|
24
25
|
--cf-app-system-color-grey-background: #f4f4f4;
|
|
25
26
|
--cf-app-system-color-grey-outline: #bdbdbd;
|
package/public/styles/font.scss
CHANGED
|
@@ -189,6 +189,18 @@ p.grey {
|
|
|
189
189
|
color: var(--cf-app-text-color-grey);
|
|
190
190
|
}
|
|
191
191
|
|
|
192
|
+
p.green {
|
|
193
|
+
color: var(--cf-app-text-color-dark-green);
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
p.yellow {
|
|
197
|
+
color: var(--cf-app-text-color-dark-yellow);
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
p.red {
|
|
201
|
+
color: var(--cf-app-text-color-dark-red);
|
|
202
|
+
}
|
|
203
|
+
|
|
192
204
|
/*================== Mobile ==================*/
|
|
193
205
|
|
|
194
206
|
p.body-large {
|