Fix select color on dark mode

pull/44/head
Steve Ruiz 2021-07-10 22:56:49 +01:00
rodzic 63ffc27b5d
commit 70c025e6d2
3 zmienionych plików z 6 dodań i 6 usunięć

Wyświetl plik

@ -52,6 +52,6 @@ const StyledCorner = styled('rect', {
const StyledCornerInner = styled('rect', {
stroke: '$bounds',
fill: '$panel',
fill: '$canvas',
zStrokeWidth: 1.5,
})

Wyświetl plik

@ -32,7 +32,7 @@ export default function Rotate({
const StyledRotateHandle = styled('circle', {
stroke: '$bounds',
fill: '#fff',
fill: '$canvas',
zStrokeWidth: 1.5,
cursor: 'grab',
})

Wyświetl plik

@ -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',