morty/doc/html/static_files.rs
1//! Static files bundled with documentation output.
2
3pub static LIGHT: &str = include_str!("static/light.css");
4/// The file contents of the main `rustdoc.css` file, responsible for the core layout of the page.
5pub static RUSTDOC_CSS: &str = include_str!("static/rustdoc.css");
6/// The file contents of the `svdoc.css` SystemVerilog stylesheet file.
7pub static SVDOC_CSS: &str = include_str!("static/svdoc.css");
8
9/// Files related to the Fira Sans font.
10pub mod fira_sans {
11 /// The file `FiraSans-Regular.woff`, the Regular variant of the Fira Sans font.
12 pub static REGULAR: &[u8] = include_bytes!("static/FiraSans-Regular.woff");
13
14 /// The file `FiraSans-Medium.woff`, the Medium variant of the Fira Sans font.
15 pub static MEDIUM: &[u8] = include_bytes!("static/FiraSans-Medium.woff");
16}
17
18/// Files related to the Source Serif Pro font.
19pub mod source_serif_pro {
20 /// The file `SourceSerifPro-Regular.ttf.woff`, the Regular variant of the Source Serif Pro
21 /// font.
22 pub static REGULAR: &[u8] = include_bytes!("static/SourceSerifPro-Regular.ttf.woff");
23
24 /// The file `SourceSerifPro-Bold.ttf.woff`, the Bold variant of the Source Serif Pro font.
25 pub static BOLD: &[u8] = include_bytes!("static/SourceSerifPro-Bold.ttf.woff");
26
27 /// The file `SourceSerifPro-It.ttf.woff`, the Italic variant of the Source Serif Pro font.
28 pub static ITALIC: &[u8] = include_bytes!("static/SourceSerifPro-It.ttf.woff");
29}
30
31/// Files related to the Source Code Pro font.
32pub mod source_code_pro {
33 /// The file `SourceCodePro-Regular.woff`, the Regular variant of the Source Code Pro font.
34 pub static REGULAR: &[u8] = include_bytes!("static/SourceCodePro-Regular.woff");
35
36 /// The file `SourceCodePro-Semibold.woff`, the Semibold variant of the Source Code Pro font.
37 pub static SEMIBOLD: &[u8] = include_bytes!("static/SourceCodePro-Semibold.woff");
38}