Compare commits

..

3 Commits

Author SHA1 Message Date
Matt Wang
720b0ebf9f Merge branch 'main' into custom-schemes 2023-10-25 14:52:10 -07:00
Matthew
870a6a4ff6 Fix Gemfile.lock post-release 2023-10-25 12:18:07 -07:00
Matthew Wang
a2fcb2120e Sketch out site.custom_schemes 2023-04-19 23:10:53 -07:00
2 changed files with 6 additions and 1 deletions

View File

@@ -1,7 +1,7 @@
PATH
remote: .
specs:
just-the-docs (0.6.2)
just-the-docs (0.7.0)
jekyll (>= 3.8.5)
jekyll-include-cache
jekyll-seo-tag (>= 2.0)

View File

@@ -7,6 +7,11 @@ $logo: "{{ site.logo | relative_url }}";
{% unless include.color_scheme == "light" %}
@import "./color_schemes/{{ include.color_scheme }}";
{% endunless %}
{% if site.custom_schemes %}
{% for scheme in site.custom_schemes %}
@import "./custom_schemes/{{scheme}}";
{% endfor %}
{% endif %}
@import "./modules";
{% include css/callouts.scss.liquid color_scheme = include.color_scheme %}
{% include css/custom.scss.liquid %}