Skip to content

Commit

Permalink
Correcting colour scheme
Browse files Browse the repository at this point in the history
Laying foundation for custom colour schemes - not currently implemented
  • Loading branch information
Paladinleeds committed Oct 9, 2024
1 parent fb6784a commit ff199b8
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 5 deletions.
10 changes: 9 additions & 1 deletion docs/stylesheets/extra.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
:root {
[data-md-color-scheme="orangopus-light"] {
--md-primary-fg-color: #111111;
--md-primary-fg-color--light: #111111;
--md-primary-fg-color--dark: #111111;

--md-accent-fg-color: #ff913d;
}

[data-md-color-scheme="orangopus-dark"] {
--md-primary-fg-color: #111111;
--md-primary-fg-color--light: #111111;
--md-primary-fg-color--dark: #111111;
Expand Down
8 changes: 4 additions & 4 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,14 +40,14 @@ theme:
toggle:
icon: material/toggle-switch-off-outline
name: Switch to dark mode
primary: root
accent: root
primary: orangopus-light
accent: orangopus-light
- scheme: slate
toggle:
icon: material/toggle-switch
name: Switch to light mode
primary: root
accent: root
primary: orangopus-dark
accent: orangopus-dark

extra_css:
- stylesheets/extra.css
Expand Down

0 comments on commit ff199b8

Please sign in to comment.