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 _.accent23 " Accent 2 - 15%" """ Faded for focus borders/backgrounds"""
90
91
, colorPanel _.accent3 " Accent 3" """ Indicates a problem, warning"""
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-2-3\" ]" : buttonColorHoverMixin colors.accent23
270
271
, " &[data-color=\" accent-3\" ]" : buttonColorHoverMixin colors.accent3
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
, accent23 :: a
38
39
, accent3 :: a
@@ -59,6 +60,7 @@ colors =
59
60
, primary4: rgb 0xed 0xf2 0xfd
60
61
, secondary: rgb 0x91 0x90 0x8d
61
62
, accent1: rgb 0x49 0xb8 0x60
63
+ , accent13: rgb 0xe4 0xf5 0xe7
62
64
, accent2: rgb 0xff 0xa5 0x02
63
65
, accent23: rgb 0xff 0xee 0xd9
64
66
, accent3: rgb 0xf1 0x50 0x0d
@@ -85,6 +87,7 @@ colorNames =
85
87
, primary4: ColorName " primary-4"
86
88
, secondary: ColorName " secondary"
87
89
, accent1: ColorName " accent-1"
90
+ , accent13: ColorName " accent-1-3"
88
91
, accent2: ColorName " accent-2"
89
92
, accent23: ColorName " accent-2-3"
90
93
, accent3: ColorName " accent-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-2-3\" ]" : { color: cssStringHSLA colors.accent23 }
199
200
, " &[data-color=\" accent-3\" ]" : { color: cssStringHSLA colors.accent3 }
You can’t perform that action at this time.
0 commit comments