Updated colours.
This commit is contained in:
parent
46b7b24ff5
commit
77500ac259
2 changed files with 33 additions and 0 deletions
|
@ -41,6 +41,9 @@ markdown_extensions:
|
||||||
- pymdownx.details
|
- pymdownx.details
|
||||||
- pymdownx.superfences
|
- pymdownx.superfences
|
||||||
|
|
||||||
|
extra_css:
|
||||||
|
- stylesheets/extra.css
|
||||||
|
|
||||||
extra_javascript:
|
extra_javascript:
|
||||||
- javascripts/mathjax.js
|
- javascripts/mathjax.js
|
||||||
- https://polyfill.io/v3/polyfill.min.js?features=es6
|
- https://polyfill.io/v3/polyfill.min.js?features=es6
|
||||||
|
|
30
docs/stylesheets/extra.css
Normal file
30
docs/stylesheets/extra.css
Normal file
|
@ -0,0 +1,30 @@
|
||||||
|
:root {
|
||||||
|
|
||||||
|
/* Primary color shades */
|
||||||
|
--md-primary-fg-color: #861f41;
|
||||||
|
--md-primary-fg-color--light: #861f4194;
|
||||||
|
--md-primary-fg-color--dark: #ac325a;
|
||||||
|
--md-primary-bg-color: hsla(0, 0%, 100%, 1);
|
||||||
|
--md-primary-bg-color--light: hsla(0, 0%, 100%, 0.7);
|
||||||
|
--md-text-link-color: hsla(231, 48%, 48%, 1);
|
||||||
|
|
||||||
|
/* Accent color shades */
|
||||||
|
--md-accent-fg-color: rgb(98, 18, 189);
|
||||||
|
--md-accent-fg-color--transparent: hsla(189, 100%, 37%, 0.1);
|
||||||
|
--md-accent-bg-color: hsla(0, 0%, 100%, 1);
|
||||||
|
--md-accent-bg-color--light: hsla(0, 0%, 100%, 0.7);
|
||||||
|
}
|
||||||
|
|
||||||
|
:root > * {
|
||||||
|
|
||||||
|
/* Code block color shades */
|
||||||
|
--md-code-bg-color: hsla(0, 0%, 96%, 1);
|
||||||
|
--md-code-fg-color: hsla(200, 18%, 26%, 1);
|
||||||
|
|
||||||
|
/* Footer */
|
||||||
|
--md-footer-bg-color: #861f41;
|
||||||
|
--md-footer-bg-color--dark: hsla(0, 0%, 0%, 0.32);
|
||||||
|
--md-footer-fg-color: hsla(0, 0%, 100%, 1);
|
||||||
|
--md-footer-fg-color--light: hsla(0, 0%, 100%, 0.7);
|
||||||
|
--md-footer-fg-color--lighter: hsla(0, 0%, 100%, 0.3);
|
||||||
|
}
|
Loading…
Reference in a new issue