8000 fix: adjust node colors in light mode (#216) · sveltejs/svelte-devtools@e332714 · GitHub
[go: up one dir, main page]

Skip to content

Commit e332714

Browse files
authored
fix: adjust node colors in light mode (#216)
1 parent c929777 commit e332714

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

workspace/extension/src/lib/nodes/Element.svelte

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@
8787

8888
<style>
8989
.tag {
90-
color: rgb(0, 116, 232);
90+
color: rgb(142, 0, 75);
9191
}
9292
9393
:global(.dark) .tag {

workspace/extension/src/lib/nodes/Node.svelte

+1-1
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@
121121
122122
li[data-current] > :global(div:first-child),
123123
li[data-current][data-hovered] > :global(div) {
124-
background: rgb(0, 116, 232);
124+
background: rgba(0, 116, 232, 0.2);
125125
}
126126
li[data-current] > :global(div:first-child:after) {
127127
content: '== $n';

0 commit comments

Comments
 (0)
0