mirror of
https://github.com/snachodog/just-the-docs.git
synced 2025-04-05 11:41:22 -06:00
This PR combines (and resolves conflicts between) #448, #463, #466, #494, #495, #496, #498, and #572. The main aim is to facilitate use of several of the implemented features _together_, when using the fork as a remote theme. It should also simplify merging the included PRs into a future release. The branch [combination-rec-nav](https://github.com/pdmosses/just-the-docs/tree/combination-rec-nav) adds [multi-level navigation](https://github.com/pmarsceill/just-the-docs/pull/462) and (NEW:) [sibling links](https://github.com/pmarsceill/just-the-docs/pull/394) to the branch used for this PR. It includes updated [documentation for the navigation structure](https://pdmosses.github.io/just-the-docs/docs/navigation-structure/), and reorganised and extended [navigation tests](https://pdmosses.github.io/just-the-docs/tests/navigation/). The documentation and the tests can be browsed at the (temporary) [website published from the combination-rec-nav branch](https://pdmosses.github.io/just-the-docs/). _Caveat:_ The changes to v0.3.3 in this PR and #462 have not yet been reviewed or approved, and may need updating before merging into a release of the theme. If you use a branch from a PR as a remote theme, there is a risk of such updates affecting your website. Moreover, these branches are likely to be deleted after they have been merged. To avoid such problems, you could copy the branch that you want to use to your own fork of the theme. Co-authored-by: Matt Wang <matt@matthewwang.me>
56 lines
2.0 KiB
Plaintext
56 lines
2.0 KiB
Plaintext
@import "colors.less";
|
|
|
|
// Official Syntax Variables -----------------------------------
|
|
|
|
// General colors
|
|
@syntax-text-color: @syntax-fg;
|
|
@syntax-cursor-color: @syntax-accent;
|
|
@syntax-selection-color: lighten(@syntax-background-color, 10%);
|
|
@syntax-selection-flash-color: @syntax-accent;
|
|
@syntax-background-color: @syntax-bg;
|
|
|
|
// Guide colors
|
|
@syntax-wrap-guide-color: @syntax-guide;
|
|
@syntax-indent-guide-color: @syntax-guide;
|
|
@syntax-invisible-character-color: @syntax-guide;
|
|
|
|
// For find and replace markers
|
|
@syntax-result-marker-color: fade(@syntax-accent, 24%);
|
|
@syntax-result-marker-color-selected: @syntax-accent;
|
|
|
|
// Gutter colors
|
|
@syntax-gutter-text-color: @syntax-gutter;
|
|
@syntax-gutter-text-color-selected: @syntax-fg;
|
|
@syntax-gutter-background-color: @syntax-bg; // unused
|
|
@syntax-gutter-background-color-selected: lighten(@syntax-bg, 2%);
|
|
|
|
// Git colors - For git diff info. i.e. in the gutter
|
|
@syntax-color-renamed: hsl(208, 100%, 60%);
|
|
@syntax-color-added: hsl(150, 60%, 54%);
|
|
@syntax-color-modified: hsl(40, 60%, 70%);
|
|
@syntax-color-removed: hsl(0, 70%, 60%);
|
|
|
|
// For language entity colors
|
|
@syntax-color-variable: @hue-5;
|
|
@syntax-color-constant: @hue-6;
|
|
@syntax-color-property: @syntax-fg;
|
|
@syntax-color-value: @syntax-fg;
|
|
@syntax-color-function: @hue-2;
|
|
@syntax-color-method: @hue-2;
|
|
@syntax-color-class: @hue-6-2;
|
|
@syntax-color-keyword: @hue-3;
|
|
@syntax-color-tag: @hue-5;
|
|
@syntax-color-attribute: @hue-6;
|
|
@syntax-color-import: @hue-3;
|
|
@syntax-color-snippet: @hue-4;
|
|
|
|
|
|
// Custom Syntax Variables -----------------------------------
|
|
// Don't use in packages
|
|
|
|
@syntax-cursor-line: hsla(@syntax-hue, 100%, 80%, .04); // needs to be semi-transparent to show search results
|
|
|
|
@syntax-deprecated-fg: darken(@syntax-color-modified, 50%);
|
|
@syntax-deprecated-bg: @syntax-color-modified;
|
|
@syntax-illegal-fg: white;
|
|
@syntax-illegal-bg: @syntax-color-removed; |