Fix select color on dark mode
This commit is contained in:
parent
63ffc27b5d
commit
70c025e6d2
3 changed files with 6 additions and 6 deletions
|
@ -52,6 +52,6 @@ const StyledCorner = styled('rect', {
|
|||
|
||||
const StyledCornerInner = styled('rect', {
|
||||
stroke: '$bounds',
|
||||
fill: '$panel',
|
||||
fill: '$canvas',
|
||||
zStrokeWidth: 1.5,
|
||||
})
|
||||
|
|
|
@ -32,7 +32,7 @@ export default function Rotate({
|
|||
|
||||
const StyledRotateHandle = styled('circle', {
|
||||
stroke: '$bounds',
|
||||
fill: '#fff',
|
||||
fill: '$canvas',
|
||||
zStrokeWidth: 1.5,
|
||||
cursor: 'grab',
|
||||
})
|
||||
|
|
|
@ -99,10 +99,10 @@ const dark = theme({
|
|||
brushFill: 'rgba(0,0,0,.05)',
|
||||
brushStroke: 'rgba(0,0,0,.25)',
|
||||
hint: 'rgba(216, 226, 249, 1.000)',
|
||||
selected: 'rgba(82, 143, 245, 1.000)',
|
||||
bounds: 'rgba(82, 143, 245, 1.000)',
|
||||
boundsBg: 'rgba(82, 143, 245, 0.05)',
|
||||
highlight: 'rgba(82, 143, 245, 0.15)',
|
||||
selected: 'rgba(38, 150, 255, 1.000)',
|
||||
bounds: 'rgba(38, 150, 255, 1.000)',
|
||||
boundsBg: 'rgba(38, 150, 255, 0.05)',
|
||||
highlight: 'rgba(38, 150, 255, 0.15)',
|
||||
overlay: 'rgba(0, 0, 0, 0.15)',
|
||||
border: '#202529',
|
||||
canvas: '#343d45',
|
||||
|
|
Loading…
Reference in a new issue