Fix highlight color in dark mode
This commit is contained in:
@@ -22,10 +22,10 @@
|
|||||||
background-color: none;
|
background-color: none;
|
||||||
}
|
}
|
||||||
25% {
|
25% {
|
||||||
background-color: #4f5781;
|
background-color: #595585;
|
||||||
}
|
}
|
||||||
50% {
|
50% {
|
||||||
background-color: #4f5781;
|
background-color: #595585;
|
||||||
}
|
}
|
||||||
100% {
|
100% {
|
||||||
background-color: none;
|
background-color: none;
|
||||||
@@ -39,11 +39,9 @@
|
|||||||
}
|
}
|
||||||
25% {
|
25% {
|
||||||
background-color: #c0c8c0;
|
background-color: #c0c8c0;
|
||||||
color: #000;
|
|
||||||
}
|
}
|
||||||
50% {
|
50% {
|
||||||
background-color: #c0c8c0;
|
background-color: #c0c8c0;
|
||||||
color: #000;
|
|
||||||
}
|
}
|
||||||
100% {
|
100% {
|
||||||
background-color: none;
|
background-color: none;
|
||||||
|
|||||||
@@ -6,12 +6,12 @@ export const styles = (theme: Theme) => {
|
|||||||
animationLight: {
|
animationLight: {
|
||||||
willChange: 'auto',
|
willChange: 'auto',
|
||||||
translateZ: 0,
|
translateZ: 0,
|
||||||
animation: `updateLight 0.5s`,
|
animation: 'updateLight 0.5s',
|
||||||
},
|
},
|
||||||
animationDark: {
|
animationDark: {
|
||||||
willChange: 'auto',
|
willChange: 'auto',
|
||||||
translateZ: 0,
|
translateZ: 0,
|
||||||
animation: `updateLight 0.5s`,
|
animation: 'updateDark 0.5s',
|
||||||
},
|
},
|
||||||
collapsedSubnodes: {
|
collapsedSubnodes: {
|
||||||
color: theme.palette.text.secondary,
|
color: theme.palette.text.secondary,
|
||||||
|
|||||||
Reference in New Issue
Block a user