Fix colours

This commit is contained in:
Simon Detheridge 2023-10-16 19:05:59 +01:00
parent 9b04b09f33
commit ab61ad1a67
Signed by: simon
GPG Key ID: 38640971DA1E704E
3 changed files with 6 additions and 5 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -74,11 +74,12 @@ production stylesheet in assets/built/screen.css
:root.light-theme {
/* light theme color */
--background-color: #fff;
--baclground-secondary: #eaeaea;
--background-secondary: #eaeaea;
--header: #fafafa;
--color-primary-text: #222;
--color-secondary-text: #999;
--border-color: #dcdcdc;
--ghost-accent-color: #007700;
}
:root.dark-theme {
@ -89,13 +90,13 @@ production stylesheet in assets/built/screen.css
--color-primary-text: #a9a9b3;
--color-secondary-text: #73747b;
--border-color: #4a4b50;
--ghost-accent-color: #77bb77;
}
:root.has-light-text,
:is(.gh-navigation, .gh-footer).has-accent-color {
--color-lighter-gray: rgb(255 255 255 / 0.1);
--color-darker-gray: #fff;
--color-secondary-text: rgb(255 255 255 / 0.64);
--color-darker-gray: var(--color-primary-text);
--color-border: rgb(255 255 255 / 0.15);
--color-dark-border: rgb(255 255 255 / 0.5);
}