diff options
author | Simone Bortolin <simonebortolin@users.noreply.github.com> | 2022-08-08 16:20:49 +0200 |
---|---|---|
committer | Simone Bortolin <simonebortolin@users.noreply.github.com> | 2022-12-19 22:59:21 +0100 |
commit | 55f09a1b4de2fbb2f815963ab1c282311755e567 (patch) | |
tree | 3999ef621aea8c68de753c24150abf30d4fb00ad /assets/css | |
parent | Update ont-technicolor-afm0002.md (diff) | |
download | hack-gpon.github.io-55f09a1b4de2fbb2f815963ab1c282311755e567.tar hack-gpon.github.io-55f09a1b4de2fbb2f815963ab1c282311755e567.tar.gz hack-gpon.github.io-55f09a1b4de2fbb2f815963ab1c282311755e567.tar.bz2 hack-gpon.github.io-55f09a1b4de2fbb2f815963ab1c282311755e567.tar.lz hack-gpon.github.io-55f09a1b4de2fbb2f815963ab1c282311755e567.tar.xz hack-gpon.github.io-55f09a1b4de2fbb2f815963ab1c282311755e567.tar.zst hack-gpon.github.io-55f09a1b4de2fbb2f815963ab1c282311755e567.zip |
Diffstat (limited to '')
-rw-r--r-- | assets/css/just-the-docs-dark.scss | 2 | ||||
-rw-r--r-- | assets/css/just-the-docs-default.scss | 6 | ||||
-rw-r--r-- | assets/css/just-the-docs-light.scss | 2 |
3 files changed, 8 insertions, 2 deletions
diff --git a/assets/css/just-the-docs-dark.scss b/assets/css/just-the-docs-dark.scss index e56eda2..779e6dd 100644 --- a/assets/css/just-the-docs-dark.scss +++ b/assets/css/just-the-docs-dark.scss @@ -1 +1 @@ -{% include css/just-the-docs.scss.liquid color_scheme="dark" %} +{% include css/just-the-docs.scss.liquid color_scheme="dark" primary_colors="blue" %} diff --git a/assets/css/just-the-docs-default.scss b/assets/css/just-the-docs-default.scss new file mode 100644 index 0000000..5a6b14a --- /dev/null +++ b/assets/css/just-the-docs-default.scss @@ -0,0 +1,6 @@ +{% if site.color_scheme and site.color_scheme != "nil" %} + {% assign color_scheme = site.color_scheme %} +{% else %} + {% assign color_scheme = "light" %} +{% endif %} +{% include css/just-the-docs.scss.liquid color_scheme=color_scheme primary_colors="blue" %}
\ No newline at end of file diff --git a/assets/css/just-the-docs-light.scss b/assets/css/just-the-docs-light.scss index 9595aef..3cdbd3c 100644 --- a/assets/css/just-the-docs-light.scss +++ b/assets/css/just-the-docs-light.scss @@ -1 +1 @@ -{% include css/just-the-docs.scss.liquid color_scheme="light" %}
\ No newline at end of file +{% include css/just-the-docs.scss.liquid color_scheme="light" primary_colors="blue" %}
\ No newline at end of file |