Skip to content

Commit

Permalink
return default colouring for light mode
Browse files Browse the repository at this point in the history
  • Loading branch information
SerCeMan committed Sep 7, 2021
1 parent 8176a5e commit 97f857d
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/viewer/App.scss
Expand Up @@ -38,6 +38,17 @@
--incoming-frame-color: #ce5500;
}
}
// TODO: is there a way not to duplicate?
@media(prefers-color-scheme: light) {
:root {
--base-text-color: #222;
--grey-text-color: #888;
--ascii-view-color: #444;
--main-background-color: #f8f8f8;
--outgoing-frame-color: #f6ffd0;
--incoming-frame-color: #ffe6ca;
}
}
.App {
font-family: 'Segoe UI', Tahoma, sans-serif;
font-size: 12px;
Expand Down

0 comments on commit 97f857d

Please sign in to comment.