chromata 1.0.0

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

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

/// cake16
///
/// Variant: Light
/// Contrast: Normal
/// Source: vim (vim-colorschemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("cake16"),
    author: Cow::Borrowed(""),
    variant: Variant::Light,
    contrast: Contrast::Normal,
    bg: Color::from_hex(0xf7efdf),
    fg: Color::from_hex(0x774f38),
    cursor: None,
    selection: Some(Color::from_hex(0x82a3b3)),
    line_highlight: Some(Color::from_hex(0xe4dccc)),
    gutter: Some(Color::from_hex(0xafafaf)),
    statusbar_bg: Some(Color::from_hex(0x678797)),
    statusbar_fg: None,
    comment: Some(Color::from_hex(0x878787)),
    keyword: Some(Color::from_hex(0x308090)),
    string: None,
    function: None,
    variable: Some(Color::from_hex(0x308444)),
    r#type: Some(Color::from_hex(0x308444)),
    constant: Some(Color::from_hex(0xb95942)),
    operator: None,
    tag: None,
    error: Some(Color::from_hex(0xf10000)),
    warning: Some(Color::from_hex(0xb95942)),
    info: None,
    success: None,
    red: Some(Color::from_hex(0xf10000)),
    orange: None,
    yellow: Some(Color::from_hex(0xb95942)),
    green: None,
    cyan: Some(Color::from_hex(0x308444)),
    blue: None,
    purple: Some(Color::from_hex(0x308090)),
    magenta: Some(Color::from_hex(0x308090)),
};