Skip to content

Commit a5faf1b

Browse files
committed
Enhanced contrast theme, for users with visual restrictions etc.
1 parent f7c9180 commit a5faf1b

File tree

6 files changed

+146
-0
lines changed

6 files changed

+146
-0
lines changed

src/renderer/html_handlebars/hbs_renderer.rs

+5
Original file line numberDiff line numberDiff line change
@@ -207,6 +207,11 @@ impl HtmlHandlebars {
207207
write_file(destination, "highlight.css", &theme.highlight_css)?;
208208
write_file(destination, "tomorrow-night.css", &theme.tomorrow_night_css)?;
209209
write_file(destination, "ayu-highlight.css", &theme.ayu_highlight_css)?;
210+
write_file(
211+
destination,
212+
"contrast-highlight.css",
213+
&theme.contrast_highlight_css,
214+
)?;
210215
write_file(destination, "highlight.js", &theme.highlight_js)?;
211216
write_file(destination, "clipboard.min.js", &theme.clipboard_js)?;
212217
write_file(

src/theme/book.js

+10
Original file line numberDiff line numberDiff line change
@@ -278,6 +278,7 @@ function playground_text(playground) {
278278
var themeColorMetaTag = document.querySelector('meta[name="theme-color"]');
279279
var stylesheets = {
280280
ayuHighlight: document.querySelector("[href$='ayu-highlight.css']"),
281+
contrastHighlight: document.querySelector("[href$='contrast-highlight.css']"),
281282
tomorrowNight: document.querySelector("[href$='tomorrow-night.css']"),
282283
highlight: document.querySelector("[href$='highlight.css']"),
283284
};
@@ -310,17 +311,26 @@ function playground_text(playground) {
310311
if (theme == 'coal' || theme == 'navy') {
311312
stylesheets.ayuHighlight.disabled = true;
312313
stylesheets.tomorrowNight.disabled = false;
314+
stylesheets.contrastHighlight.disabled = true;
313315
stylesheets.highlight.disabled = true;
314316

315317
ace_theme = "ace/theme/tomorrow_night";
316318
} else if (theme == 'ayu') {
317319
stylesheets.ayuHighlight.disabled = false;
318320
stylesheets.tomorrowNight.disabled = true;
321+
stylesheets.contrastHighlight.disabled = true;
319322
stylesheets.highlight.disabled = true;
320323
ace_theme = "ace/theme/tomorrow_night";
324+
} else if (theme == 'contrast') {
325+
stylesheets.ayuHighlight.disabled = true;
326+
stylesheets.tomorrowNight.disabled = true;
327+
stylesheets.contrastHighlight.disabled = false;
328+
stylesheets.highlight.disabled = true;
329+
ace_theme = "ace/theme/dawn";
321330
} else {
322331
stylesheets.ayuHighlight.disabled = true;
323332
stylesheets.tomorrowNight.disabled = true;
333+
stylesheets.contrastHighlight.disabled = true;
324334
stylesheets.highlight.disabled = false;
325335
ace_theme = "ace/theme/dawn";
326336
}

src/theme/contrast-highlight.css

+80
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
/* An increased contrast highlighting scheme VERY loosely based */
2+
/* on the mdbook highlight scheme - which is a subset of Base16 Atelier Dune Light - Theme */
3+
/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/dune) */
4+
/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
5+
6+
/* Atelier-Seaside Comment */
7+
.hljs-comment,
8+
.hljs-quote {
9+
color: #AAA;
10+
}
11+
12+
/* Red */
13+
.hljs-variable,
14+
.hljs-template-variable,
15+
.hljs-attribute,
16+
.hljs-tag,
17+
.hljs-name,
18+
.hljs-regexp,
19+
.hljs-link,
20+
.hljs-name,
21+
.hljs-selector-id,
22+
.hljs-selector-class {
23+
color: #d70025;
24+
}
25+
26+
/* Orange */
27+
.hljs-number,
28+
.hljs-meta,
29+
.hljs-built_in,
30+
.hljs-builtin-name,
31+
.hljs-literal,
32+
.hljs-type,
33+
.hljs-params {
34+
color: #b65611;
35+
}
36+
37+
/* Green */
38+
.hljs-string,
39+
.hljs-symbol,
40+
.hljs-bullet {
41+
color: #008200;
42+
}
43+
44+
/* Blue */
45+
.hljs-title,
46+
.hljs-section {
47+
color: #0030f2;
48+
}
49+
50+
/* Purple */
51+
.hljs-keyword,
52+
.hljs-selector-tag {
53+
color: #9d00ec;
54+
}
55+
56+
.hljs {
57+
display: block;
58+
overflow-x: auto;
59+
background: #f5f6f6;
60+
color: #000;
61+
padding: 0.5em;
62+
}
63+
64+
.hljs-emphasis {
65+
font-style: italic;
66+
}
67+
68+
.hljs-strong {
69+
font-weight: bold;
70+
}
71+
72+
.hljs-addition {
73+
color: #22863a;
74+
background-color: #f0fff4;
75+
}
76+
77+
.hljs-deletion {
78+
color: #b31d28;
79+
background-color: #ffeef0;
80+
}

src/theme/css/variables.css

+40
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,46 @@
130130
--search-mark-bg: #a2cff5;
131131
}
132132

133+
.contrast {
134+
--bg: hsl(0, 0%, 100%);
135+
--fg: hsl(0, 0%, 0%);
136+
137+
--sidebar-bg: #fafafa;
138+
--sidebar-fg: hsl(0, 0%, 0%);
139+
--sidebar-non-existant: #aaaaaa;
140+
--sidebar-active: #008cff;
141+
--sidebar-spacer: #f4f4f4;
142+
143+
--scrollbar: #777777;
144+
145+
--icons: #777777;
146+
--icons-hover: #000000;
147+
148+
--links: #20609f;
149+
150+
--inline-code-color: #604e00;
151+
152+
--theme-popup-bg: #fafafa;
153+
--theme-popup-border: #cccccc;
154+
--theme-hover: #e6e6e6;
155+
156+
--quote-bg: hsl(197, 37%, 96%);
157+
--quote-border: hsl(197, 37%, 91%);
158+
159+
--table-border-color: hsl(0, 0%, 95%);
160+
--table-header-bg: hsl(0, 0%, 80%);
161+
--table-alternate-bg: hsl(0, 0%, 97%);
162+
163+
--searchbar-border-color: #aaa;
164+
--searchbar-bg: #fafafa;
165+
--searchbar-fg: #000;
166+
--searchbar-shadow-color: #aaa;
167+
--searchresults-header-fg: #666;
168+
--searchresults-border-color: #888;
169+
--searchresults-li-bg: #e4f2fe;
170+
--search-mark-bg: #a2cff5;
171+
}
172+
133173
.navy {
134174
--bg: hsl(226, 23%, 11%);
135175
--fg: #bcbdd0;

src/theme/index.hbs

+2
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@
4343
<link rel="stylesheet" href="{{ path_to_root }}highlight.css">
4444
<link rel="stylesheet" href="{{ path_to_root }}tomorrow-night.css">
4545
<link rel="stylesheet" href="{{ path_to_root }}ayu-highlight.css">
46+
<link rel="stylesheet" href="{{ path_to_root }}contrast-highlight.css">
4647

4748
<!-- Custom theme stylesheets -->
4849
{{#each additional_css}}
@@ -123,6 +124,7 @@
123124
</button>
124125
<ul id="theme-list" class="theme-popup" aria-label="Themes" role="menu">
125126
<li role="none"><button role="menuitem" class="theme" id="light">{{ theme_option "Light" }}</button></li>
127+
<li role="none"><button role="menuitem" class="theme" id="contrast">{{ theme_option "Contrast" }}</button></li>
126128
<li role="none"><button role="menuitem" class="theme" id="rust">{{ theme_option "Rust" }}</button></li>
127129
<li role="none"><button role="menuitem" class="theme" id="coal">{{ theme_option "Coal" }}</button></li>
128130
<li role="none"><button role="menuitem" class="theme" id="navy">{{ theme_option "Navy" }}</button></li>

src/theme/mod.rs

+9
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ pub static HIGHLIGHT_JS: &[u8] = include_bytes!("highlight.js");
2828
pub static TOMORROW_NIGHT_CSS: &[u8] = include_bytes!("tomorrow-night.css");
2929
pub static HIGHLIGHT_CSS: &[u8] = include_bytes!("highlight.css");
3030
pub static AYU_HIGHLIGHT_CSS: &[u8] = include_bytes!("ayu-highlight.css");
31+
pub static CONTRAST_HIGHLIGHT_CSS: &[u8] = include_bytes!("contrast-highlight.css");
3132
pub static CLIPBOARD_JS: &[u8] = include_bytes!("clipboard.min.js");
3233
pub static FONT_AWESOME: &[u8] = include_bytes!("FontAwesome/css/font-awesome.min.css");
3334
pub static FONT_AWESOME_EOT: &[u8] = include_bytes!("FontAwesome/fonts/fontawesome-webfont.eot");
@@ -60,6 +61,7 @@ pub struct Theme {
6061
pub highlight_css: Vec<u8>,
6162
pub tomorrow_night_css: Vec<u8>,
6263
pub ayu_highlight_css: Vec<u8>,
64+
pub contrast_highlight_css: Vec<u8>,
6365
pub highlight_js: Vec<u8>,
6466
pub clipboard_js: Vec<u8>,
6567
}
@@ -102,6 +104,10 @@ impl Theme {
102104
theme_dir.join("ayu-highlight.css"),
103105
&mut theme.ayu_highlight_css,
104106
),
107+
(
108+
theme_dir.join("contrast-highlight.css"),
109+
&mut theme.contrast_highlight_css,
110+
),
105111
];
106112

107113
let load_with_warn = |filename: &Path, dest| {
@@ -159,6 +165,7 @@ impl Default for Theme {
159165
highlight_css: HIGHLIGHT_CSS.to_owned(),
160166
tomorrow_night_css: TOMORROW_NIGHT_CSS.to_owned(),
161167
ayu_highlight_css: AYU_HIGHLIGHT_CSS.to_owned(),
168+
contrast_highlight_css: CONTRAST_HIGHLIGHT_CSS.to_owned(),
162169
highlight_js: HIGHLIGHT_JS.to_owned(),
163170
clipboard_js: CLIPBOARD_JS.to_owned(),
164171
}
@@ -218,6 +225,7 @@ mod tests {
218225
"tomorrow-night.css",
219226
"highlight.css",
220227
"ayu-highlight.css",
228+
"contrast-highlight.css",
221229
"clipboard.min.js",
222230
];
223231

@@ -246,6 +254,7 @@ mod tests {
246254
highlight_css: Vec::new(),
247255
tomorrow_night_css: Vec::new(),
248256
ayu_highlight_css: Vec::new(),
257+
contrast_highlight_css: Vec::new(),
249258
highlight_js: Vec::new(),
250259
clipboard_js: Vec::new(),
251260
};

0 commit comments

Comments
 (0)