File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed
packages/node_modules/overmind-devtools-client/src Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ const ActionOperator: FunctionComponent<Props> = ({
3737 className = { styles . operatorType }
3838 style = { {
3939 backgroundColor : operator . error ? colors . red : null ,
40- color : operator . error ? colors . white : null ,
40+ color : operator . error ? colors . text : null ,
4141 } }
4242 >
4343 { operator . type }
Original file line number Diff line number Diff line change @@ -16,13 +16,13 @@ export const actionItem = css({
1616 borderRadius : 3 ,
1717 cursor : 'pointer' ,
1818 ':hover' : {
19- backgroundColor : colors . dark3 ,
19+ backgroundColor : colors . foreground ,
2020 } ,
2121 marginBottom : 2 ,
2222} )
2323
2424export const selected = css ( {
25- backgroundColor : colors . dark3 ,
25+ backgroundColor : colors . foreground ,
2626 fontWeight : 'bold' ,
2727} )
2828
@@ -49,7 +49,7 @@ export const actionSubItem = css({
4949 textIndent : 15 ,
5050 borderRadius : 3 ,
5151 ':hover' : {
52- backgroundColor : colors . dark3 ,
52+ backgroundColor : colors . foreground ,
5353 } ,
5454 marginBottom : 2 ,
5555} )
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import { css } from 'emotion'
22import { colors } from '../theme'
33
44export const white = css ( {
5- color : colors . white ,
5+ color : colors . text ,
66} )
77
88export const red = css ( {
@@ -18,7 +18,7 @@ export const yellow = css({
1818} )
1919
2020export const dark = css ( {
21- color : colors . dark ,
21+ color : colors . background ,
2222} )
2323export const monospace = css ( {
2424 fontFamily : "'Source Code Pro', monospace" ,
You can’t perform that action at this time.
0 commit comments