Parent
[>]
1//! Built-in color themes. 2 3use ValueEnum; 4 5/// Base stylesheet — layout, navigation, repo list, tree view, blame. 6pub const BASE_CSS: &str = include_str!; 7 8/// Additional styles for rendered Markdown (README files). 9pub const MARKDOWN_CSS: &str = include_str!; 10 11/// A built-in color theme. `Auto` and `SolarizedAuto` follow the OS 12/// light/dark preference via `prefers-color-scheme`. 13 14 24 25