add proper dark/light mode

This commit is contained in:
2024-01-09 14:49:22 +01:00
parent 800a424b67
commit a4faa9dd1a
3 changed files with 76 additions and 38 deletions

View File

@@ -6,3 +6,25 @@
* {
font-family: "Prompt";
}
html .cet-titlebar {
background-color: #ececec !important;
color: #202020 !important;
}
html.dark .cet-titlebar {
background-color: #202020 !important;
color: #ececec !important;
}
html .cet-titlebar .cet-control-icon svg {
fill: #000;
}
html.dark .cet-titlebar .cet-control-icon svg {
fill: #fff;
}
.cet-titlebar .cet-icon {
display: none;
}