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