chromata 1.0.0

1000+ editor color themes as compile-time Rust constants
Documentation
//! manuscript color theme.
//!
//! Auto-generated by `cargo xtask generate vim` — do not edit.

use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;

/// manuscript
///
/// Variant: Dark
/// Contrast: High
/// Source: vim (vim-colorschemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("manuscript"),
    author: Cow::Borrowed(""),
    variant: Variant::Dark,
    contrast: Contrast::High,
    bg: Color::from_hex(0x242424),
    fg: Color::from_hex(0xe5e5e5),
    cursor: Some(Color::from_hex(0xf0e68c)),
    selection: Some(Color::from_hex(0x406070)),
    line_highlight: Some(Color::from_hex(0x101010)),
    gutter: Some(Color::from_hex(0x707070)),
    statusbar_bg: Some(Color::from_hex(0xc2bfa5)),
    statusbar_fg: Some(Color::from_hex(0x000000)),
    comment: Some(Color::from_hex(0x7f9f7f)),
    keyword: Some(Color::from_hex(0x779fcf)),
    string: None,
    function: None,
    variable: Some(Color::from_hex(0xffdead)),
    r#type: Some(Color::from_hex(0x87ceeb)),
    constant: Some(Color::from_hex(0xcea3ce)),
    operator: None,
    tag: None,
    error: None,
    warning: None,
    info: None,
    success: None,
    red: None,
    orange: None,
    yellow: Some(Color::from_hex(0xcfbfaf)),
    green: None,
    cyan: Some(Color::from_hex(0x87ceeb)),
    blue: None,
    purple: Some(Color::from_hex(0x779fcf)),
    magenta: Some(Color::from_hex(0xbf7f6f)),
};