just-the-docs 0.4.1 → 0.4.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 440d312f6c68a86a993a1fddc2b61d1641e5fe36effd6f955d83b336028c8451
4
- data.tar.gz: e3ad4e055424dbeee4bb32155d6bb6d6d651a81085d5af0260dd413baaaaebf3
3
+ metadata.gz: b2a75d7008e3b7f782d50b4b3aed5e53db9f94f0b57a2c748cc252e0b41b39db
4
+ data.tar.gz: a529b1bd98602fa0db7105a1203e8139ee84c93277e1fa8afee98fd540b5e79c
5
5
  SHA512:
6
- metadata.gz: cc347172d6be7593580c7976001ab4246c1b5b7220257b941693317b55b751c84b4df560a0c51643b02446723f34e06c94e86d33bca9b826f2f05862ff8f6a00
7
- data.tar.gz: 7121dda31f7ca398995f52b9e8808b5949c32788bcb5fbc71863d34cc1027b2b36bfc7cd0aae94d41c22e1c9bdfa0da1334cb66bbc7ebf487cb8c0775759f407
6
+ metadata.gz: ecb0456688508db5ea904d3ee2a638ff9ecaa8eea80da2f36734f457ec9160497b152f1de3a158e27a27308641fc08ec456f5d6c18bfec7b433db5c1458a7144
7
+ data.tar.gz: d50d2faa91d48465e5e33f1e37ca5f2364f9ec399f421aed57aefb8d11df27c025512992ec06987b36c2589a888cb6a66f0e694d329bc118b52d159766f4b8ae
data/CHANGELOG.md CHANGED
@@ -16,7 +16,7 @@ The project underwent a major maintenance shift in March 2022.
16
16
  This website is built from the `HEAD` of the `main` branch of the theme repository.
17
17
 
18
18
  {: .warning }
19
- This website includes docs for some new features that are not available in `v0.4.1`!
19
+ This website includes docs for some new features that are not available in `v0.4.2`!
20
20
 
21
21
  Code changes to `main` that are *not* in the latest release:
22
22
 
@@ -26,6 +26,51 @@ Docs changes in `main` that are *not* in the latest release:
26
26
 
27
27
  - N/A
28
28
 
29
+ ## Release v0.4.2
30
+
31
+ Hello! We're back again with another small release. Like `v0.4.1`, this release is a [semver patch](https://semver.org/): it only includes bugfixes, and is fully backwards-compatible.
32
+
33
+ The big highlight of this theme is fixing our light scheme code highlighting contrast issues; this was one of our most-requested features! This change is fully backwards-compatible; users can [opt-in to our old highlighting theme](https://just-the-docs.github.io/just-the-docs/docs/customization/#deprecated-legacy_light) by using `legacy_light` instead of `light`.
34
+
35
+ As always, we'd love your feedback. [Open an issue](https://github.com/just-the-docs/just-the-docs/issues) or [start a discussion](https://github.com/just-the-docs/just-the-docs/discussions) for bug reports, feature requests, and any other feedback. Thanks for continuing to use Just the Docs!
36
+
37
+ ### Using Release `v0.4.2`
38
+
39
+ Users who have not pinned the theme version will be **automatically upgraded to `v0.4.2` the next time they build their site**.
40
+
41
+ To use this release explicitly as a remote theme:
42
+
43
+ ```yml
44
+ remote_theme: just-the-docs/just-the-docs@v0.4.2
45
+ ```
46
+
47
+ To use this RC explicitly as a gem-based theme, pin the version in your `Gemfile` and re-run `bundle install` or `bundle update just-the-docs`:
48
+
49
+ ```ruby
50
+ gem "just-the-docs", "0.4.2"
51
+ ```
52
+
53
+ To use and pin a previous version of the theme, replace the `0.4.2` with the desired release tag.
54
+
55
+ ### Bugfixes
56
+
57
+ - Fixed: light scheme code highlighting contrast issues; updated to use Atom's One Light colors, consolidate theme variables by [@mattxwang] in [#1166]
58
+ - Fixed: duplicate import of `color_schemes` by [@mattxwang] in [#1173]
59
+ - Fixed: import order for `setup.scss` by [@mattxwang] in [#1184]
60
+ - Removed: unused dark syntax themes by [@mattxwang] in [#1192]
61
+
62
+ ### Documentation
63
+
64
+ - Added: docs for using mermaid with AsciiDoc by [@flyx] in [#1182]
65
+
66
+ **Full Changelog**: [https://github.com/just-the-docs/just-the-docs/compare/v0.4.1...v0.4.2](https://github.com/just-the-docs/just-the-docs/compare/v0.4.1...v0.4.2)
67
+
68
+ [#1166]: https://github.com/just-the-docs/just-the-docs/pull/1166
69
+ [#1173]: https://github.com/just-the-docs/just-the-docs/pull/1173
70
+ [#1182]: https://github.com/just-the-docs/just-the-docs/pull/1182
71
+ [#1184]: https://github.com/just-the-docs/just-the-docs/pull/1184
72
+ [#1192]: https://github.com/just-the-docs/just-the-docs/pull/1192
73
+
29
74
  ## Release v0.4.1
30
75
 
31
76
  Hello! We hope you've been enjoying the new `v0.4.0`; we appreciate all the feedback we've gotten already! As promised, future releases will be small with simple steps to upgrade. This is one of them! `v0.4.1` is a [semver patch](https://semver.org/): it only includes bugfixes, and is fully backwards-compatible.
@@ -2,9 +2,11 @@
2
2
  $logo: "{{ site.logo | relative_url }}";
3
3
  {% endif %}
4
4
  @import "./support/support";
5
- @import "./custom/setup";
6
5
  @import "./color_schemes/light";
6
+ {% unless include.color_scheme == "light" %}
7
7
  @import "./color_schemes/{{ include.color_scheme }}";
8
+ {% endunless %}
9
+ @import "./custom/setup";
8
10
  @import "./modules";
9
11
  {% include css/callouts.scss.liquid color_scheme = include.color_scheme %}
10
12
  {% include css/custom.scss.liquid %}
@@ -1,32 +1,17 @@
1
1
  $body-background-color: $grey-dk-300;
2
- $sidebar-color: $grey-dk-300;
3
- $border-color: $grey-dk-200;
4
- $body-text-color: $grey-lt-300;
5
2
  $body-heading-color: $grey-lt-000;
6
- $nav-child-link-color: $grey-dk-000;
7
- $search-result-preview-color: $grey-dk-000;
3
+ $body-text-color: $grey-lt-300;
8
4
  $link-color: $blue-000;
9
- $btn-primary-color: $blue-200;
5
+ $nav-child-link-color: $grey-dk-000;
6
+ $sidebar-color: $grey-dk-300;
10
7
  $base-button-color: $grey-dk-250;
11
- $search-background-color: $grey-dk-250;
12
- $table-background-color: $grey-dk-250;
13
- $feedback-color: darken($sidebar-color, 3%);
14
-
15
- // The following highlight theme is more legible than that used for the light color scheme
16
-
17
- // @import "./vendor/OneDarkJekyll/syntax-one-dark";
18
- // $code-background-color: #282c34; // OneDarkJekyll default for syntax-one-dark
19
- // $code-linenumber-color: #abb2bf; // OneDarkJekyll .nf for syntax-one-dark
20
-
21
- @import "./vendor/OneDarkJekyll/syntax-one-dark-vivid";
22
-
8
+ $btn-primary-color: $blue-200;
23
9
  $code-background-color: #31343f; // OneDarkJekyll default for syntax-one-dark-vivid
24
10
  $code-linenumber-color: #dee2f7; // OneDarkJekyll .nf for syntax-one-dark-vivid
11
+ $feedback-color: darken($sidebar-color, 3%);
12
+ $table-background-color: $grey-dk-250;
13
+ $search-background-color: $grey-dk-250;
14
+ $search-result-preview-color: $grey-dk-000;
15
+ $border-color: $grey-dk-200;
25
16
 
26
- // @import "./vendor/OneDarkJekyll/syntax-firewatch";
27
- // $code-background-color: #282c34; // OneDarkJekyll default for syntax-firewatch
28
- // $code-linenumber-color: #abb2bf; // OneDarkJekyll .nf for syntax-firewatch
29
-
30
- // @import "./vendor/OneDarkJekyll/syntax-firewatch-green";
31
- // $code-background-color: #282c34; // OneDarkJekyll default for syntax-firewatch-green
32
- // $code-linenumber-color: #abb2bf; // OneDarkJekyll .nf for syntax-firewatch-green
17
+ @import "./vendor/OneDarkJekyll/syntax"; // this is the one-dark-vivid atom syntax theme
@@ -0,0 +1,208 @@
1
+ // Moved from _sass/code.scss
2
+
3
+ .highlight .c {
4
+ color: #586e75;
5
+ } // comment //
6
+ .highlight .err {
7
+ color: #93a1a1;
8
+ } // error //
9
+ .highlight .g {
10
+ color: #93a1a1;
11
+ } // generic //
12
+ .highlight .k {
13
+ color: #859900;
14
+ } // keyword //
15
+ .highlight .l {
16
+ color: #93a1a1;
17
+ } // literal //
18
+ .highlight .n {
19
+ color: #93a1a1;
20
+ } // name //
21
+ .highlight .o {
22
+ color: #859900;
23
+ } // operator //
24
+ .highlight .x {
25
+ color: #cb4b16;
26
+ } // other //
27
+ .highlight .p {
28
+ color: #93a1a1;
29
+ } // punctuation //
30
+ .highlight .cm {
31
+ color: #586e75;
32
+ } // comment.multiline //
33
+ .highlight .cp {
34
+ color: #859900;
35
+ } // comment.preproc //
36
+ .highlight .c1 {
37
+ color: #586e75;
38
+ } // comment.single //
39
+ .highlight .cs {
40
+ color: #859900;
41
+ } // comment.special //
42
+ .highlight .gd {
43
+ color: #2aa198;
44
+ } // generic.deleted //
45
+ .highlight .ge {
46
+ font-style: italic;
47
+ color: #93a1a1;
48
+ } // generic.emph //
49
+ .highlight .gr {
50
+ color: #dc322f;
51
+ } // generic.error //
52
+ .highlight .gh {
53
+ color: #cb4b16;
54
+ } // generic.heading //
55
+ .highlight .gi {
56
+ color: #859900;
57
+ } // generic.inserted //
58
+ .highlight .go {
59
+ color: #93a1a1;
60
+ } // generic.output //
61
+ .highlight .gp {
62
+ color: #93a1a1;
63
+ } // generic.prompt //
64
+ .highlight .gs {
65
+ font-weight: bold;
66
+ color: #93a1a1;
67
+ } // generic.strong //
68
+ .highlight .gu {
69
+ color: #cb4b16;
70
+ } // generic.subheading //
71
+ .highlight .gt {
72
+ color: #93a1a1;
73
+ } // generic.traceback //
74
+ .highlight .kc {
75
+ color: #cb4b16;
76
+ } // keyword.constant //
77
+ .highlight .kd {
78
+ color: #268bd2;
79
+ } // keyword.declaration //
80
+ .highlight .kn {
81
+ color: #859900;
82
+ } // keyword.namespace //
83
+ .highlight .kp {
84
+ color: #859900;
85
+ } // keyword.pseudo //
86
+ .highlight .kr {
87
+ color: #268bd2;
88
+ } // keyword.reserved //
89
+ .highlight .kt {
90
+ color: #dc322f;
91
+ } // keyword.type //
92
+ .highlight .ld {
93
+ color: #93a1a1;
94
+ } // literal.date //
95
+ .highlight .m {
96
+ color: #2aa198;
97
+ } // literal.number //
98
+ .highlight .s {
99
+ color: #2aa198;
100
+ } // literal.string //
101
+ .highlight .na {
102
+ color: #555;
103
+ } // name.attribute //
104
+ .highlight .nb {
105
+ color: #b58900;
106
+ } // name.builtin //
107
+ .highlight .nc {
108
+ color: #268bd2;
109
+ } // name.class //
110
+ .highlight .no {
111
+ color: #cb4b16;
112
+ } // name.constant //
113
+ .highlight .nd {
114
+ color: #268bd2;
115
+ } // name.decorator //
116
+ .highlight .ni {
117
+ color: #cb4b16;
118
+ } // name.entity //
119
+ .highlight .ne {
120
+ color: #cb4b16;
121
+ } // name.exception //
122
+ .highlight .nf {
123
+ color: #268bd2;
124
+ } // name.function //
125
+ .highlight .nl {
126
+ color: #555;
127
+ } // name.label //
128
+ .highlight .nn {
129
+ color: #93a1a1;
130
+ } // name.namespace //
131
+ .highlight .nx {
132
+ color: #555;
133
+ } // name.other //
134
+ .highlight .py {
135
+ color: #93a1a1;
136
+ } // name.property //
137
+ .highlight .nt {
138
+ color: #268bd2;
139
+ } // name.tag //
140
+ .highlight .nv {
141
+ color: #268bd2;
142
+ } // name.variable //
143
+ .highlight .ow {
144
+ color: #859900;
145
+ } // operator.word //
146
+ .highlight .w {
147
+ color: #93a1a1;
148
+ } // text.whitespace //
149
+ .highlight .mf {
150
+ color: #2aa198;
151
+ } // literal.number.float //
152
+ .highlight .mh {
153
+ color: #2aa198;
154
+ } // literal.number.hex //
155
+ .highlight .mi {
156
+ color: #2aa198;
157
+ } // literal.number.integer //
158
+ .highlight .mo {
159
+ color: #2aa198;
160
+ } // literal.number.oct //
161
+ .highlight .sb {
162
+ color: #586e75;
163
+ } // literal.string.backtick //
164
+ .highlight .sc {
165
+ color: #2aa198;
166
+ } // literal.string.char //
167
+ .highlight .sd {
168
+ color: #93a1a1;
169
+ } // literal.string.doc //
170
+ .highlight .s2 {
171
+ color: #2aa198;
172
+ } // literal.string.double //
173
+ .highlight .se {
174
+ color: #cb4b16;
175
+ } // literal.string.escape //
176
+ .highlight .sh {
177
+ color: #93a1a1;
178
+ } // literal.string.heredoc //
179
+ .highlight .si {
180
+ color: #2aa198;
181
+ } // literal.string.interpol //
182
+ .highlight .sx {
183
+ color: #2aa198;
184
+ } // literal.string.other //
185
+ .highlight .sr {
186
+ color: #dc322f;
187
+ } // literal.string.regex //
188
+ .highlight .s1 {
189
+ color: #2aa198;
190
+ } // literal.string.single //
191
+ .highlight .ss {
192
+ color: #2aa198;
193
+ } // literal.string.symbol //
194
+ .highlight .bp {
195
+ color: #268bd2;
196
+ } // name.builtin.pseudo //
197
+ .highlight .vc {
198
+ color: #268bd2;
199
+ } // name.variable.class //
200
+ .highlight .vg {
201
+ color: #268bd2;
202
+ } // name.variable.global //
203
+ .highlight .vi {
204
+ color: #268bd2;
205
+ } // name.variable.instance //
206
+ .highlight .il {
207
+ color: #2aa198;
208
+ } // literal.number.integer.long //
@@ -1,208 +1,15 @@
1
- // Moved from _sass/code.scss
1
+ $body-background-color: $white !default;
2
+ $body-heading-color: $grey-dk-300 !default;
3
+ $body-text-color: $grey-dk-100 !default;
4
+ $link-color: $purple-000 !default;
5
+ $nav-child-link-color: $grey-dk-100 !default;
6
+ $sidebar-color: $grey-lt-000 !default;
7
+ $base-button-color: #f7f7f7 !default;
8
+ $btn-primary-color: $purple-100 !default;
9
+ $code-background-color: $grey-lt-000 !default;
10
+ $feedback-color: darken($sidebar-color, 3%) !default;
11
+ $table-background-color: $white !default;
12
+ $search-background-color: $white !default;
13
+ $search-result-preview-color: $grey-dk-000 !default;
2
14
 
3
- .highlight .c {
4
- color: #586e75;
5
- } // comment //
6
- .highlight .err {
7
- color: #93a1a1;
8
- } // error //
9
- .highlight .g {
10
- color: #93a1a1;
11
- } // generic //
12
- .highlight .k {
13
- color: #859900;
14
- } // keyword //
15
- .highlight .l {
16
- color: #93a1a1;
17
- } // literal //
18
- .highlight .n {
19
- color: #93a1a1;
20
- } // name //
21
- .highlight .o {
22
- color: #859900;
23
- } // operator //
24
- .highlight .x {
25
- color: #cb4b16;
26
- } // other //
27
- .highlight .p {
28
- color: #93a1a1;
29
- } // punctuation //
30
- .highlight .cm {
31
- color: #586e75;
32
- } // comment.multiline //
33
- .highlight .cp {
34
- color: #859900;
35
- } // comment.preproc //
36
- .highlight .c1 {
37
- color: #586e75;
38
- } // comment.single //
39
- .highlight .cs {
40
- color: #859900;
41
- } // comment.special //
42
- .highlight .gd {
43
- color: #2aa198;
44
- } // generic.deleted //
45
- .highlight .ge {
46
- font-style: italic;
47
- color: #93a1a1;
48
- } // generic.emph //
49
- .highlight .gr {
50
- color: #dc322f;
51
- } // generic.error //
52
- .highlight .gh {
53
- color: #cb4b16;
54
- } // generic.heading //
55
- .highlight .gi {
56
- color: #859900;
57
- } // generic.inserted //
58
- .highlight .go {
59
- color: #93a1a1;
60
- } // generic.output //
61
- .highlight .gp {
62
- color: #93a1a1;
63
- } // generic.prompt //
64
- .highlight .gs {
65
- font-weight: bold;
66
- color: #93a1a1;
67
- } // generic.strong //
68
- .highlight .gu {
69
- color: #cb4b16;
70
- } // generic.subheading //
71
- .highlight .gt {
72
- color: #93a1a1;
73
- } // generic.traceback //
74
- .highlight .kc {
75
- color: #cb4b16;
76
- } // keyword.constant //
77
- .highlight .kd {
78
- color: #268bd2;
79
- } // keyword.declaration //
80
- .highlight .kn {
81
- color: #859900;
82
- } // keyword.namespace //
83
- .highlight .kp {
84
- color: #859900;
85
- } // keyword.pseudo //
86
- .highlight .kr {
87
- color: #268bd2;
88
- } // keyword.reserved //
89
- .highlight .kt {
90
- color: #dc322f;
91
- } // keyword.type //
92
- .highlight .ld {
93
- color: #93a1a1;
94
- } // literal.date //
95
- .highlight .m {
96
- color: #2aa198;
97
- } // literal.number //
98
- .highlight .s {
99
- color: #2aa198;
100
- } // literal.string //
101
- .highlight .na {
102
- color: #555;
103
- } // name.attribute //
104
- .highlight .nb {
105
- color: #b58900;
106
- } // name.builtin //
107
- .highlight .nc {
108
- color: #268bd2;
109
- } // name.class //
110
- .highlight .no {
111
- color: #cb4b16;
112
- } // name.constant //
113
- .highlight .nd {
114
- color: #268bd2;
115
- } // name.decorator //
116
- .highlight .ni {
117
- color: #cb4b16;
118
- } // name.entity //
119
- .highlight .ne {
120
- color: #cb4b16;
121
- } // name.exception //
122
- .highlight .nf {
123
- color: #268bd2;
124
- } // name.function //
125
- .highlight .nl {
126
- color: #555;
127
- } // name.label //
128
- .highlight .nn {
129
- color: #93a1a1;
130
- } // name.namespace //
131
- .highlight .nx {
132
- color: #555;
133
- } // name.other //
134
- .highlight .py {
135
- color: #93a1a1;
136
- } // name.property //
137
- .highlight .nt {
138
- color: #268bd2;
139
- } // name.tag //
140
- .highlight .nv {
141
- color: #268bd2;
142
- } // name.variable //
143
- .highlight .ow {
144
- color: #859900;
145
- } // operator.word //
146
- .highlight .w {
147
- color: #93a1a1;
148
- } // text.whitespace //
149
- .highlight .mf {
150
- color: #2aa198;
151
- } // literal.number.float //
152
- .highlight .mh {
153
- color: #2aa198;
154
- } // literal.number.hex //
155
- .highlight .mi {
156
- color: #2aa198;
157
- } // literal.number.integer //
158
- .highlight .mo {
159
- color: #2aa198;
160
- } // literal.number.oct //
161
- .highlight .sb {
162
- color: #586e75;
163
- } // literal.string.backtick //
164
- .highlight .sc {
165
- color: #2aa198;
166
- } // literal.string.char //
167
- .highlight .sd {
168
- color: #93a1a1;
169
- } // literal.string.doc //
170
- .highlight .s2 {
171
- color: #2aa198;
172
- } // literal.string.double //
173
- .highlight .se {
174
- color: #cb4b16;
175
- } // literal.string.escape //
176
- .highlight .sh {
177
- color: #93a1a1;
178
- } // literal.string.heredoc //
179
- .highlight .si {
180
- color: #2aa198;
181
- } // literal.string.interpol //
182
- .highlight .sx {
183
- color: #2aa198;
184
- } // literal.string.other //
185
- .highlight .sr {
186
- color: #dc322f;
187
- } // literal.string.regex //
188
- .highlight .s1 {
189
- color: #2aa198;
190
- } // literal.string.single //
191
- .highlight .ss {
192
- color: #2aa198;
193
- } // literal.string.symbol //
194
- .highlight .bp {
195
- color: #268bd2;
196
- } // name.builtin.pseudo //
197
- .highlight .vc {
198
- color: #268bd2;
199
- } // name.variable.class //
200
- .highlight .vg {
201
- color: #268bd2;
202
- } // name.variable.global //
203
- .highlight .vi {
204
- color: #268bd2;
205
- } // name.variable.instance //
206
- .highlight .il {
207
- color: #2aa198;
208
- } // literal.number.integer.long //
15
+ @import "./vendor/OneLightJekyll/syntax";
@@ -56,19 +56,6 @@ $red-000: #f77e7e !default;
56
56
  $red-100: #f96e65 !default;
57
57
  $red-200: #e94c4c !default;
58
58
  $red-300: #dd2e2e !default;
59
- $body-background-color: $white !default;
60
- $sidebar-color: $grey-lt-000 !default;
61
- $search-background-color: $white !default;
62
- $table-background-color: $white !default;
63
- $code-background-color: $grey-lt-000 !default;
64
- $feedback-color: darken($sidebar-color, 3%) !default;
65
- $body-text-color: $grey-dk-100 !default;
66
- $body-heading-color: $grey-dk-300 !default;
67
- $search-result-preview-color: $grey-dk-000 !default;
68
- $nav-child-link-color: $grey-dk-100 !default;
69
- $link-color: $purple-000 !default;
70
- $btn-primary-color: $purple-100 !default;
71
- $base-button-color: #f7f7f7 !default;
72
59
 
73
60
  // Spacing
74
61
 
@@ -16,8 +16,7 @@
16
16
  @content;
17
17
  }
18
18
  } @else {
19
- @warn "No value could be retrieved from `#{$media-query}`. "
20
- + "Please make sure it is defined in `$media-queries` map.";
19
+ @warn "No value could be retrieved from `#{$media-query}`. Please make sure it is defined in `$media-queries` map.";
21
20
  }
22
21
  }
23
22
 
@@ -1,3 +1,5 @@
1
+ // Generated with OneDarkJekyll applied to Atom's One Dark Vivid theme
2
+
1
3
  .highlight,
2
4
  pre.highlight {
3
5
  background: #31343f;
@@ -0,0 +1,65 @@
1
+ OneLightJekyll relies on two works: OneDarkJekyll, and Atom's One Light theme. This file contains the licensing for all the related software.
2
+
3
+ ---
4
+
5
+ OneLightJekyll (https://github.com/just-the-docs/OneLightJekyll/blob/main/LICENSE)
6
+
7
+ MIT License
8
+
9
+ Copyright (c) 2023 Matthew Wang
10
+
11
+ Permission is hereby granted, free of charge, to any person obtaining a copy
12
+ of this software and associated documentation files (the "Software"), to deal
13
+ in the Software without restriction, including without limitation the rights
14
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
15
+ copies of the Software, and to permit persons to whom the Software is
16
+ furnished to do so, subject to the following conditions:
17
+
18
+ The above copyright notice and this permission notice shall be included in all
19
+ copies or substantial portions of the Software.
20
+
21
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
22
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
23
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
24
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
26
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
27
+ SOFTWARE.
28
+
29
+ ---
30
+
31
+ OneDarkJekyll (https://github.com/mgyongyosi/OneDarkJekyll/blob/master/LICENSE)
32
+
33
+ MIT License
34
+
35
+ Copyright (c) 2016 Mihály Gyöngyösi
36
+
37
+ Permission is hereby granted, free of charge, to any person obtaining a copy
38
+ of this software and associated documentation files (the "Software"), to deal
39
+ in the Software without restriction, including without limitation the rights
40
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
41
+ copies of the Software, and to permit persons to whom the Software is
42
+ furnished to do so, subject to the following conditions:
43
+
44
+ The above copyright notice and this permission notice shall be included in all
45
+ copies or substantial portions of the Software.
46
+
47
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
48
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
49
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
50
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
51
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
52
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
53
+ SOFTWARE.
54
+
55
+ ---
56
+
57
+ Atom One Light (https://github.com/atom/atom/blob/master/LICENSE.md)
58
+
59
+ Copyright (c) 2011-2022 GitHub Inc.
60
+
61
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
62
+
63
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
64
+
65
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -1,51 +1,53 @@
1
+ // Generated with OneLightJekyll applied to Atom's One Light theme
2
+
1
3
  .highlight,
2
4
  pre.highlight {
3
- background: #282c34;
4
- color: #abb2bf;
5
+ background: #f9f9f9;
6
+ color: #383942;
5
7
  }
6
8
  .highlight pre {
7
- background: #282c34;
9
+ background: #f9f9f9;
8
10
  }
9
11
  .highlight .hll {
10
- background: #282c34;
12
+ background: #f9f9f9;
11
13
  }
12
14
  .highlight .c {
13
- color: #5c6370;
15
+ color: #9fa0a6;
14
16
  font-style: italic;
15
17
  }
16
18
  .highlight .err {
17
- color: #960050;
18
- background-color: #1e0010;
19
+ color: #fff;
20
+ background-color: #e05151;
19
21
  }
20
22
  .highlight .k {
21
- color: #5ba473;
23
+ color: #a625a4;
22
24
  }
23
25
  .highlight .l {
24
- color: #c8ae9d;
26
+ color: #50a04f;
25
27
  }
26
28
  .highlight .n {
27
- color: #abb2bf;
29
+ color: #383942;
28
30
  }
29
31
  .highlight .o {
30
- color: #abb2bf;
32
+ color: #383942;
31
33
  }
32
34
  .highlight .p {
33
- color: #abb2bf;
35
+ color: #383942;
34
36
  }
35
37
  .highlight .cm {
36
- color: #5c6370;
38
+ color: #9fa0a6;
37
39
  font-style: italic;
38
40
  }
39
41
  .highlight .cp {
40
- color: #5c6370;
42
+ color: #9fa0a6;
41
43
  font-style: italic;
42
44
  }
43
45
  .highlight .c1 {
44
- color: #5c6370;
46
+ color: #9fa0a6;
45
47
  font-style: italic;
46
48
  }
47
49
  .highlight .cs {
48
- color: #5c6370;
50
+ color: #9fa0a6;
49
51
  font-style: italic;
50
52
  }
51
53
  .highlight .ge {
@@ -55,73 +57,73 @@ pre.highlight {
55
57
  font-weight: 700;
56
58
  }
57
59
  .highlight .kc {
58
- color: #5ba473;
60
+ color: #a625a4;
59
61
  }
60
62
  .highlight .kd {
61
- color: #5ba473;
63
+ color: #a625a4;
62
64
  }
63
65
  .highlight .kn {
64
- color: #5ba473;
66
+ color: #a625a4;
65
67
  }
66
68
  .highlight .kp {
67
- color: #5ba473;
69
+ color: #a625a4;
68
70
  }
69
71
  .highlight .kr {
70
- color: #5ba473;
72
+ color: #a625a4;
71
73
  }
72
74
  .highlight .kt {
73
- color: #5ba473;
75
+ color: #a625a4;
74
76
  }
75
77
  .highlight .ld {
76
- color: #c8ae9d;
78
+ color: #50a04f;
77
79
  }
78
80
  .highlight .m {
79
- color: #d19a66;
81
+ color: #b66a00;
80
82
  }
81
83
  .highlight .s {
82
- color: #c8ae9d;
84
+ color: #50a04f;
83
85
  }
84
86
  .highlight .na {
85
- color: #d19a66;
87
+ color: #b66a00;
86
88
  }
87
89
  .highlight .nb {
88
- color: #e5c07b;
90
+ color: #ca7601;
89
91
  }
90
92
  .highlight .nc {
91
- color: #e5c07b;
93
+ color: #ca7601;
92
94
  }
93
95
  .highlight .no {
94
- color: #e5c07b;
96
+ color: #ca7601;
95
97
  }
96
98
  .highlight .nd {
97
- color: #e5c07b;
99
+ color: #ca7601;
98
100
  }
99
101
  .highlight .ni {
100
- color: #e5c07b;
102
+ color: #ca7601;
101
103
  }
102
104
  .highlight .ne {
103
- color: #e5c07b;
105
+ color: #ca7601;
104
106
  }
105
107
  .highlight .nf {
106
- color: #abb2bf;
108
+ color: #383942;
107
109
  }
108
110
  .highlight .nl {
109
- color: #e5c07b;
111
+ color: #ca7601;
110
112
  }
111
113
  .highlight .nn {
112
- color: #abb2bf;
114
+ color: #383942;
113
115
  }
114
116
  .highlight .nx {
115
- color: #abb2bf;
117
+ color: #383942;
116
118
  }
117
119
  .highlight .py {
118
- color: #e5c07b;
120
+ color: #ca7601;
119
121
  }
120
122
  .highlight .nt {
121
- color: #77b181;
123
+ color: #e35549;
122
124
  }
123
125
  .highlight .nv {
124
- color: #e5c07b;
126
+ color: #ca7601;
125
127
  }
126
128
  .highlight .ow {
127
129
  font-weight: 700;
@@ -130,71 +132,80 @@ pre.highlight {
130
132
  color: #f8f8f2;
131
133
  }
132
134
  .highlight .mf {
133
- color: #d19a66;
135
+ color: #b66a00;
134
136
  }
135
137
  .highlight .mh {
136
- color: #d19a66;
138
+ color: #b66a00;
137
139
  }
138
140
  .highlight .mi {
139
- color: #d19a66;
141
+ color: #b66a00;
140
142
  }
141
143
  .highlight .mo {
142
- color: #d19a66;
144
+ color: #b66a00;
143
145
  }
144
146
  .highlight .sb {
145
- color: #c8ae9d;
147
+ color: #50a04f;
146
148
  }
147
149
  .highlight .sc {
148
- color: #c8ae9d;
150
+ color: #50a04f;
149
151
  }
150
152
  .highlight .sd {
151
- color: #c8ae9d;
153
+ color: #50a04f;
152
154
  }
153
155
  .highlight .s2 {
154
- color: #c8ae9d;
156
+ color: #50a04f;
155
157
  }
156
158
  .highlight .se {
157
- color: #c8ae9d;
159
+ color: #50a04f;
158
160
  }
159
161
  .highlight .sh {
160
- color: #c8ae9d;
162
+ color: #50a04f;
161
163
  }
162
164
  .highlight .si {
163
- color: #c8ae9d;
165
+ color: #50a04f;
164
166
  }
165
167
  .highlight .sx {
166
- color: #c8ae9d;
168
+ color: #50a04f;
167
169
  }
168
170
  .highlight .sr {
169
- color: #56b6c2;
171
+ color: #0083bb;
170
172
  }
171
173
  .highlight .s1 {
172
- color: #c8ae9d;
174
+ color: #50a04f;
173
175
  }
174
176
  .highlight .ss {
175
- color: #56b6c2;
177
+ color: #0083bb;
176
178
  }
177
179
  .highlight .bp {
178
- color: #e5c07b;
180
+ color: #ca7601;
179
181
  }
180
182
  .highlight .vc {
181
- color: #e5c07b;
183
+ color: #ca7601;
182
184
  }
183
185
  .highlight .vg {
184
- color: #e5c07b;
186
+ color: #ca7601;
185
187
  }
186
188
  .highlight .vi {
187
- color: #77b181;
189
+ color: #e35549;
188
190
  }
189
191
  .highlight .il {
190
- color: #d19a66;
192
+ color: #b66a00;
191
193
  }
192
194
  .highlight .gu {
193
195
  color: #75715e;
194
196
  }
195
197
  .highlight .gd {
196
- color: #f92672;
198
+ color: #e05151;
197
199
  }
198
200
  .highlight .gi {
199
- color: #a6e22e;
201
+ color: #43d089;
202
+ }
203
+ .highlight ::selection {
204
+ background-color: #fff;
205
+ }
206
+ .highlight .language-json .w + .s2 {
207
+ color: #e35549;
208
+ }
209
+ .highlight .language-json .kc {
210
+ color: #0083bb;
200
211
  }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: just-the-docs
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.1
4
+ version: 0.4.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Patrick Marsceill
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2023-02-23 00:00:00.000000000 Z
12
+ date: 2023-03-15 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: bundler
@@ -127,6 +127,7 @@ files:
127
127
  - _sass/buttons.scss
128
128
  - _sass/code.scss
129
129
  - _sass/color_schemes/dark.scss
130
+ - _sass/color_schemes/legacy_light.scss
130
131
  - _sass/color_schemes/light.scss
131
132
  - _sass/content.scss
132
133
  - _sass/custom/custom.scss
@@ -154,10 +155,9 @@ files:
154
155
  - _sass/utilities/_typography.scss
155
156
  - _sass/utilities/utilities.scss
156
157
  - _sass/vendor/OneDarkJekyll/LICENSE
157
- - _sass/vendor/OneDarkJekyll/syntax-firewatch-green.scss
158
- - _sass/vendor/OneDarkJekyll/syntax-firewatch.scss
159
- - _sass/vendor/OneDarkJekyll/syntax-one-dark-vivid.scss
160
- - _sass/vendor/OneDarkJekyll/syntax-one-dark.scss
158
+ - _sass/vendor/OneDarkJekyll/syntax.scss
159
+ - _sass/vendor/OneLightJekyll/LICENSE
160
+ - _sass/vendor/OneLightJekyll/syntax.scss
161
161
  - _sass/vendor/normalize.scss/README.md
162
162
  - _sass/vendor/normalize.scss/normalize.scss
163
163
  - assets/css/just-the-docs-dark.scss
@@ -1,200 +0,0 @@
1
- .highlight,
2
- pre.highlight {
3
- background: #282c34;
4
- color: #abb2bf;
5
- }
6
- .highlight pre {
7
- background: #282c34;
8
- }
9
- .highlight .hll {
10
- background: #282c34;
11
- }
12
- .highlight .c {
13
- color: #5c6370;
14
- font-style: italic;
15
- }
16
- .highlight .err {
17
- color: #960050;
18
- background-color: #1e0010;
19
- }
20
- .highlight .k {
21
- color: #dd672c;
22
- }
23
- .highlight .l {
24
- color: #c8ae9d;
25
- }
26
- .highlight .n {
27
- color: #abb2bf;
28
- }
29
- .highlight .o {
30
- color: #abb2bf;
31
- }
32
- .highlight .p {
33
- color: #abb2bf;
34
- }
35
- .highlight .cm {
36
- color: #5c6370;
37
- font-style: italic;
38
- }
39
- .highlight .cp {
40
- color: #5c6370;
41
- font-style: italic;
42
- }
43
- .highlight .c1 {
44
- color: #5c6370;
45
- font-style: italic;
46
- }
47
- .highlight .cs {
48
- color: #5c6370;
49
- font-style: italic;
50
- }
51
- .highlight .ge {
52
- font-style: italic;
53
- }
54
- .highlight .gs {
55
- font-weight: 700;
56
- }
57
- .highlight .kc {
58
- color: #dd672c;
59
- }
60
- .highlight .kd {
61
- color: #dd672c;
62
- }
63
- .highlight .kn {
64
- color: #dd672c;
65
- }
66
- .highlight .kp {
67
- color: #dd672c;
68
- }
69
- .highlight .kr {
70
- color: #dd672c;
71
- }
72
- .highlight .kt {
73
- color: #dd672c;
74
- }
75
- .highlight .ld {
76
- color: #c8ae9d;
77
- }
78
- .highlight .m {
79
- color: #d19a66;
80
- }
81
- .highlight .s {
82
- color: #c8ae9d;
83
- }
84
- .highlight .na {
85
- color: #d19a66;
86
- }
87
- .highlight .nb {
88
- color: #e5c07b;
89
- }
90
- .highlight .nc {
91
- color: #e5c07b;
92
- }
93
- .highlight .no {
94
- color: #e5c07b;
95
- }
96
- .highlight .nd {
97
- color: #e5c07b;
98
- }
99
- .highlight .ni {
100
- color: #e5c07b;
101
- }
102
- .highlight .ne {
103
- color: #e5c07b;
104
- }
105
- .highlight .nf {
106
- color: #abb2bf;
107
- }
108
- .highlight .nl {
109
- color: #e5c07b;
110
- }
111
- .highlight .nn {
112
- color: #abb2bf;
113
- }
114
- .highlight .nx {
115
- color: #abb2bf;
116
- }
117
- .highlight .py {
118
- color: #e5c07b;
119
- }
120
- .highlight .nt {
121
- color: #e06c75;
122
- }
123
- .highlight .nv {
124
- color: #e5c07b;
125
- }
126
- .highlight .ow {
127
- font-weight: 700;
128
- }
129
- .highlight .w {
130
- color: #f8f8f2;
131
- }
132
- .highlight .mf {
133
- color: #d19a66;
134
- }
135
- .highlight .mh {
136
- color: #d19a66;
137
- }
138
- .highlight .mi {
139
- color: #d19a66;
140
- }
141
- .highlight .mo {
142
- color: #d19a66;
143
- }
144
- .highlight .sb {
145
- color: #c8ae9d;
146
- }
147
- .highlight .sc {
148
- color: #c8ae9d;
149
- }
150
- .highlight .sd {
151
- color: #c8ae9d;
152
- }
153
- .highlight .s2 {
154
- color: #c8ae9d;
155
- }
156
- .highlight .se {
157
- color: #c8ae9d;
158
- }
159
- .highlight .sh {
160
- color: #c8ae9d;
161
- }
162
- .highlight .si {
163
- color: #c8ae9d;
164
- }
165
- .highlight .sx {
166
- color: #c8ae9d;
167
- }
168
- .highlight .sr {
169
- color: #56b6c2;
170
- }
171
- .highlight .s1 {
172
- color: #c8ae9d;
173
- }
174
- .highlight .ss {
175
- color: #56b6c2;
176
- }
177
- .highlight .bp {
178
- color: #e5c07b;
179
- }
180
- .highlight .vc {
181
- color: #e5c07b;
182
- }
183
- .highlight .vg {
184
- color: #e5c07b;
185
- }
186
- .highlight .vi {
187
- color: #e06c75;
188
- }
189
- .highlight .il {
190
- color: #d19a66;
191
- }
192
- .highlight .gu {
193
- color: #75715e;
194
- }
195
- .highlight .gd {
196
- color: #f92672;
197
- }
198
- .highlight .gi {
199
- color: #a6e22e;
200
- }
@@ -1,200 +0,0 @@
1
- .highlight,
2
- pre.highlight {
3
- background: #282c34;
4
- color: #abb2bf;
5
- }
6
- .highlight pre {
7
- background: #282c34;
8
- }
9
- .highlight .hll {
10
- background: #282c34;
11
- }
12
- .highlight .c {
13
- color: #5c6370;
14
- font-style: italic;
15
- }
16
- .highlight .err {
17
- color: #960050;
18
- background-color: #1e0010;
19
- }
20
- .highlight .k {
21
- color: #c678dd;
22
- }
23
- .highlight .l {
24
- color: #98c379;
25
- }
26
- .highlight .n {
27
- color: #abb2bf;
28
- }
29
- .highlight .o {
30
- color: #abb2bf;
31
- }
32
- .highlight .p {
33
- color: #abb2bf;
34
- }
35
- .highlight .cm {
36
- color: #5c6370;
37
- font-style: italic;
38
- }
39
- .highlight .cp {
40
- color: #5c6370;
41
- font-style: italic;
42
- }
43
- .highlight .c1 {
44
- color: #5c6370;
45
- font-style: italic;
46
- }
47
- .highlight .cs {
48
- color: #5c6370;
49
- font-style: italic;
50
- }
51
- .highlight .ge {
52
- font-style: italic;
53
- }
54
- .highlight .gs {
55
- font-weight: 700;
56
- }
57
- .highlight .kc {
58
- color: #c678dd;
59
- }
60
- .highlight .kd {
61
- color: #c678dd;
62
- }
63
- .highlight .kn {
64
- color: #c678dd;
65
- }
66
- .highlight .kp {
67
- color: #c678dd;
68
- }
69
- .highlight .kr {
70
- color: #c678dd;
71
- }
72
- .highlight .kt {
73
- color: #c678dd;
74
- }
75
- .highlight .ld {
76
- color: #98c379;
77
- }
78
- .highlight .m {
79
- color: #d19a66;
80
- }
81
- .highlight .s {
82
- color: #98c379;
83
- }
84
- .highlight .na {
85
- color: #d19a66;
86
- }
87
- .highlight .nb {
88
- color: #e5c07b;
89
- }
90
- .highlight .nc {
91
- color: #e5c07b;
92
- }
93
- .highlight .no {
94
- color: #e5c07b;
95
- }
96
- .highlight .nd {
97
- color: #e5c07b;
98
- }
99
- .highlight .ni {
100
- color: #e5c07b;
101
- }
102
- .highlight .ne {
103
- color: #e5c07b;
104
- }
105
- .highlight .nf {
106
- color: #abb2bf;
107
- }
108
- .highlight .nl {
109
- color: #e5c07b;
110
- }
111
- .highlight .nn {
112
- color: #abb2bf;
113
- }
114
- .highlight .nx {
115
- color: #abb2bf;
116
- }
117
- .highlight .py {
118
- color: #e5c07b;
119
- }
120
- .highlight .nt {
121
- color: #e06c75;
122
- }
123
- .highlight .nv {
124
- color: #e5c07b;
125
- }
126
- .highlight .ow {
127
- font-weight: 700;
128
- }
129
- .highlight .w {
130
- color: #f8f8f2;
131
- }
132
- .highlight .mf {
133
- color: #d19a66;
134
- }
135
- .highlight .mh {
136
- color: #d19a66;
137
- }
138
- .highlight .mi {
139
- color: #d19a66;
140
- }
141
- .highlight .mo {
142
- color: #d19a66;
143
- }
144
- .highlight .sb {
145
- color: #98c379;
146
- }
147
- .highlight .sc {
148
- color: #98c379;
149
- }
150
- .highlight .sd {
151
- color: #98c379;
152
- }
153
- .highlight .s2 {
154
- color: #98c379;
155
- }
156
- .highlight .se {
157
- color: #98c379;
158
- }
159
- .highlight .sh {
160
- color: #98c379;
161
- }
162
- .highlight .si {
163
- color: #98c379;
164
- }
165
- .highlight .sx {
166
- color: #98c379;
167
- }
168
- .highlight .sr {
169
- color: #56b6c2;
170
- }
171
- .highlight .s1 {
172
- color: #98c379;
173
- }
174
- .highlight .ss {
175
- color: #56b6c2;
176
- }
177
- .highlight .bp {
178
- color: #e5c07b;
179
- }
180
- .highlight .vc {
181
- color: #e5c07b;
182
- }
183
- .highlight .vg {
184
- color: #e5c07b;
185
- }
186
- .highlight .vi {
187
- color: #e06c75;
188
- }
189
- .highlight .il {
190
- color: #d19a66;
191
- }
192
- .highlight .gu {
193
- color: #75715e;
194
- }
195
- .highlight .gd {
196
- color: #f92672;
197
- }
198
- .highlight .gi {
199
- color: #a6e22e;
200
- }