Skip to content

Commit 43c8c8e

Browse files
committed
chore: update overlay bg color for dark mode
1 parent 429fe5c commit 43c8c8e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/overlay/src/App.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ const panelState = ref<{
2222
const cssVars = computed(() => {
2323
const dark = mode.value === 'dark'
2424
return {
25-
'--vue-devtools-widget-bg': dark ? '#111' : '#ffffff',
25+
'--vue-devtools-widget-bg': dark ? '#212427' : '#ffffff',
2626
'--vue-devtools-widget-fg': dark ? '#F5F5F5' : '#111',
2727
'--vue-devtools-widget-border': dark ? '#3336' : '#efefef',
2828
'--vue-devtools-widget-shadow': dark ? 'rgba(0,0,0,0.3)' : 'rgba(128,128,128,0.1)',

0 commit comments

Comments
 (0)