chromata 1.0.0

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

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

/// wintersday
///
/// Variant: Dark
/// Contrast: High
/// Source: vim (vim-colorschemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("wintersday"),
    author: Cow::Borrowed(""),
    variant: Variant::Dark,
    contrast: Contrast::High,
    bg: Color::from_hex(0x000000),
    fg: Color::from_hex(0xcccccc),
    cursor: Some(Color::from_hex(0x8b8878)),
    selection: Some(Color::from_hex(0x8b8878)),
    line_highlight: None,
    gutter: Some(Color::from_hex(0x696969)),
    statusbar_bg: Some(Color::from_hex(0x8b4513)),
    statusbar_fg: Some(Color::from_hex(0xffffff)),
    comment: Some(Color::from_hex(0x6699cc)),
    keyword: Some(Color::from_hex(0xcc6666)),
    string: None,
    function: None,
    variable: Some(Color::from_hex(0xffd700)),
    r#type: Some(Color::from_hex(0xb0c4de)),
    constant: Some(Color::from_hex(0x99ccff)),
    operator: None,
    tag: None,
    error: Some(Color::from_hex(0xff6347)),
    warning: Some(Color::from_hex(0xffa0ff)),
    info: None,
    success: None,
    red: Some(Color::from_hex(0xff6347)),
    orange: None,
    yellow: Some(Color::from_hex(0xffa0ff)),
    green: Some(Color::from_hex(0xa0d0ff)),
    cyan: Some(Color::from_hex(0xb0c4de)),
    blue: None,
    purple: Some(Color::from_hex(0xcc6666)),
    magenta: Some(Color::from_hex(0x40f0a0)),
};