chromata 1.0.0

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

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

/// yeller
///
/// Variant: Dark
/// Contrast: Normal
/// Source: vim (vim-colorschemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("yeller"),
    author: Cow::Borrowed(""),
    variant: Variant::Dark,
    contrast: Contrast::Normal,
    bg: Color::from_hex(0x203327),
    fg: Color::from_hex(0xcbdcef),
    cursor: Some(Color::from_hex(0xcad5c0)),
    selection: Some(Color::from_hex(0x935fdf)),
    line_highlight: None,
    gutter: Some(Color::from_hex(0x50c5b5)),
    statusbar_bg: Some(Color::from_hex(0x2c3a3a)),
    statusbar_fg: Some(Color::from_hex(0x6a955d)),
    comment: Some(Color::from_hex(0x3a504a)),
    keyword: Some(Color::from_hex(0xffef60)),
    string: None,
    function: Some(Color::from_hex(0xc05a3a)),
    variable: Some(Color::from_hex(0xb08aaa)),
    r#type: Some(Color::from_hex(0xaab56a)),
    constant: Some(Color::from_hex(0xf09a5a)),
    operator: Some(Color::from_hex(0x4a4a50)),
    tag: None,
    error: Some(Color::from_hex(0xc0c0c0)),
    warning: Some(Color::from_hex(0x800000)),
    info: None,
    success: None,
    red: Some(Color::from_hex(0xc0c0c0)),
    orange: None,
    yellow: Some(Color::from_hex(0x800000)),
    green: None,
    cyan: Some(Color::from_hex(0xaab56a)),
    blue: Some(Color::from_hex(0xc05a3a)),
    purple: Some(Color::from_hex(0xffef60)),
    magenta: Some(Color::from_hex(0xd045a3)),
};