Skip to content

Commit

Permalink
Demo: Adjust light theme color
Browse files Browse the repository at this point in the history
  • Loading branch information
xarantolus committed Nov 23, 2023
1 parent b3d013b commit 9588fb0
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion examples/web/src/components/Demo.vue
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,14 @@ export default defineComponent({
padding: 16px;
border-radius: 16px;
overflow: auto;
background-color: var(--vt-c-black-soft);
background-color: #ccc;
}
@media (prefers-color-scheme: dark) {
.install {
color: #ccc;
background-color: var(--vt-c-black-soft);
}
}
.install>pre::before {
Expand Down

0 comments on commit 9588fb0

Please sign in to comment.