File tree 4 files changed +6
-0
lines changed
4 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -85,6 +85,7 @@ links"""
85
85
""" Input dropdown row hover background color
86
86
selected table row background color"""
87
87
, colorPanel _.accent1 " Accent 1" """ Indicates good or complete status"""
88
+ , colorPanel _.accent13 " Accent 1 - 15%" """ Faded for focus borders/backgrounds"""
88
89
, colorPanel _.accent2 " Accent 2" """ Indicates pending, needs attention"""
89
90
, colorPanel _.accent3 " Accent 3" """ Indicates a problem, warning"""
90
91
, colorPanel _.accent33 " Accent 3 - 15%" """ Faded for focus borders/backgrounds"""
Original file line number Diff line number Diff line change @@ -265,6 +265,7 @@ styles = jss
265
265
, " &[data-color=\" primary-3\" ]" : buttonColorHoverMixin colors.primary3
266
266
, " &[data-color=\" primary-4\" ]" : buttonColorHoverMixin colors.primary4
267
267
, " &[data-color=\" accent-1\" ]" : buttonColorHoverMixin colors.accent1
268
+ , " &[data-color=\" accent-1-3\" ]" : buttonColorHoverMixin colors.accent13
268
269
, " &[data-color=\" accent-2\" ]" : buttonColorHoverMixin colors.accent2
269
270
, " &[data-color=\" accent-3\" ]" : buttonColorHoverMixin colors.accent3
270
271
, " &[data-color=\" accent-3-3\" ]" : buttonColorHoverMixin colors.accent33
Original file line number Diff line number Diff line change @@ -33,6 +33,7 @@ type ColorMap a =
33
33
, primary4 :: a
34
34
, secondary :: a
35
35
, accent1 :: a
36
+ , accent13 :: a
36
37
, accent2 :: a
37
38
, accent3 :: a
38
39
, accent33 :: a
@@ -58,6 +59,7 @@ colors =
58
59
, primary4: rgb 0xed 0xf2 0xfd
59
60
, secondary: rgb 0x91 0x90 0x8d
60
61
, accent1: rgb 0x49 0xb8 0x60
62
+ , accent13: rgb 0xe4 0xf5 0xe7
61
63
, accent2: rgb 0xff 0xa5 0x02
62
64
, accent3: rgb 0xf1 0x50 0x0d
63
65
, accent33: rgb 0xfd 0xe5 0xdb
@@ -83,6 +85,7 @@ colorNames =
83
85
, primary4: ColorName " primary-4"
84
86
, secondary: ColorName " secondary"
85
87
, accent1: ColorName " accent-1"
88
+ , accent13: ColorName " accent-1-3"
86
89
, accent2: ColorName " accent-2"
87
90
, accent3: ColorName " accent-3"
88
91
, accent33: ColorName " accent-3-3"
Original file line number Diff line number Diff line change @@ -194,6 +194,7 @@ styles =
194
194
, " &[data-color=\" primary-3\" ]" : { color: cssStringHSLA colors.primary3 }
195
195
, " &[data-color=\" primary-4\" ]" : { color: cssStringHSLA colors.primary4 }
196
196
, " &[data-color=\" accent-1\" ]" : { color: cssStringHSLA colors.accent1 }
197
+ , " &[data-color=\" accent-1-3\" ]" : { color: cssStringHSLA colors.accent13 }
197
198
, " &[data-color=\" accent-2\" ]" : { color: cssStringHSLA colors.accent2 }
198
199
, " &[data-color=\" accent-3\" ]" : { color: cssStringHSLA colors.accent3 }
199
200
, " &[data-color=\" accent-3-3\" ]" : { color: cssStringHSLA colors.accent33 }
You can’t perform that action at this time.
0 commit comments