mirror of
https://github.com/snachodog/just-the-docs.git
synced 2025-04-15 15:42:24 -06:00
* Fix default highlighting in custom schemes Fix #982 The variable settings for highlighting in the default `light` scheme are currently (v0.4.0.rc2`) in `_sass/color_schemes/light.scss`. This PR ensures that custom schemes are based on the `light` scheme. It also adds a note explaining the default to the customization docs, and gives an example of how to define a custom scheme based on the `dark` scheme * Prettier * Deleted test file Co-authored-by: Matt Wang <matt@matthewwang.me>
10 lines
321 B
Plaintext
10 lines
321 B
Plaintext
{% if site.logo %}
|
|
$logo: "{{ site.logo | relative_url }}";
|
|
{% endif %}
|
|
@import "./support/support";
|
|
@import "./color_schemes/light";
|
|
@import "./color_schemes/{{ include.color_scheme }}";
|
|
@import "./modules";
|
|
{% include css/custom.scss.liquid %}
|
|
{% include css/callouts.scss.liquid color_scheme = include.color_scheme %}
|