Skip to content

Commit

Permalink
Adjust onedark/onelight themes for light mode
Browse files Browse the repository at this point in the history
  • Loading branch information
tmaegel committed Nov 3, 2023
1 parent 31b8833 commit 5b97153
Showing 1 changed file with 18 additions and 9 deletions.
27 changes: 18 additions & 9 deletions themes/custom/static/css/style.css
Original file line number Diff line number Diff line change
@@ -1,24 +1,33 @@
:root {
--card-box-shadow: none;
/* code */
--black: #1e222a;
--text: #abb2bf;
--green: #98c379;
--red: #e06c75;
--yellow: #d19a66;
--blue: #61afef;
--magenta: #c678dd;
--cyan: #56b6c2;
}

[data-theme="light"] {
--background-color: #fff;
--primary-focus: var(--secondary-focus);
/* code */
--black: #6a6a6a;
--text: #6a6a6a;
--green: #1da912;
--red: #e05661;
--yellow: #eea825;
--blue: #118dc3;
--magenta: #9a77cf;
--cyan: #56b6c2;
}

[data-theme="dark"] {
--background-color: #11191f;
--primary-focus: var(--secondary-focus);
/* code */
--black: #1e222a;
--text: #abb2bf;
--green: #98c379;
--red: #e06c75;
--yellow: #d19a66;
--blue: #61afef;
--magenta: #c678dd;
--cyan: #56b6c2;
}

body,
Expand Down

0 comments on commit 5b97153

Please sign in to comment.