@@ -28,6 +28,7 @@ pub static HIGHLIGHT_JS: &[u8] = include_bytes!("highlight.js");
28
28
pub static TOMORROW_NIGHT_CSS : & [ u8 ] = include_bytes ! ( "tomorrow-night.css" ) ;
29
29
pub static HIGHLIGHT_CSS : & [ u8 ] = include_bytes ! ( "highlight.css" ) ;
30
30
pub static AYU_HIGHLIGHT_CSS : & [ u8 ] = include_bytes ! ( "ayu-highlight.css" ) ;
31
+ pub static CONTRAST_HIGHLIGHT_CSS : & [ u8 ] = include_bytes ! ( "contrast-highlight.css" ) ;
31
32
pub static CLIPBOARD_JS : & [ u8 ] = include_bytes ! ( "clipboard.min.js" ) ;
32
33
pub static FONT_AWESOME : & [ u8 ] = include_bytes ! ( "FontAwesome/css/font-awesome.min.css" ) ;
33
34
pub static FONT_AWESOME_EOT : & [ u8 ] = include_bytes ! ( "FontAwesome/fonts/fontawesome-webfont.eot" ) ;
@@ -60,6 +61,7 @@ pub struct Theme {
60
61
pub highlight_css : Vec < u8 > ,
61
62
pub tomorrow_night_css : Vec < u8 > ,
62
63
pub ayu_highlight_css : Vec < u8 > ,
64
+ pub contrast_highlight_css : Vec < u8 > ,
63
65
pub highlight_js : Vec < u8 > ,
64
66
pub clipboard_js : Vec < u8 > ,
65
67
}
@@ -102,6 +104,10 @@ impl Theme {
102
104
theme_dir. join( "ayu-highlight.css" ) ,
103
105
& mut theme. ayu_highlight_css,
104
106
) ,
107
+ (
108
+ theme_dir. join( "contrast-highlight.css" ) ,
109
+ & mut theme. contrast_highlight_css,
110
+ ) ,
105
111
] ;
106
112
107
113
let load_with_warn = |filename : & Path , dest| {
@@ -159,6 +165,7 @@ impl Default for Theme {
159
165
highlight_css : HIGHLIGHT_CSS . to_owned ( ) ,
160
166
tomorrow_night_css : TOMORROW_NIGHT_CSS . to_owned ( ) ,
161
167
ayu_highlight_css : AYU_HIGHLIGHT_CSS . to_owned ( ) ,
168
+ contrast_highlight_css : CONTRAST_HIGHLIGHT_CSS . to_owned ( ) ,
162
169
highlight_js : HIGHLIGHT_JS . to_owned ( ) ,
163
170
clipboard_js : CLIPBOARD_JS . to_owned ( ) ,
164
171
}
@@ -218,6 +225,7 @@ mod tests {
218
225
"tomorrow-night.css" ,
219
226
"highlight.css" ,
220
227
"ayu-highlight.css" ,
228
+ "contrast-highlight.css" ,
221
229
"clipboard.min.js" ,
222
230
] ;
223
231
@@ -246,6 +254,7 @@ mod tests {
246
254
highlight_css : Vec :: new ( ) ,
247
255
tomorrow_night_css : Vec :: new ( ) ,
248
256
ayu_highlight_css : Vec :: new ( ) ,
257
+ contrast_highlight_css : Vec :: new ( ) ,
249
258
highlight_js : Vec :: new ( ) ,
250
259
clipboard_js : Vec :: new ( ) ,
251
260
} ;
0 commit comments