chromata 1.0.0

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

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

/// ashen
///
/// Variant: Light
/// Contrast: High
/// Source: vim (vim-colorschemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("ashen"),
    author: Cow::Borrowed(""),
    variant: Variant::Light,
    contrast: Contrast::High,
    bg: Color::from_hex(0xe0e0e0),
    fg: Color::from_hex(0x000000),
    cursor: None,
    selection: Some(Color::from_hex(0x00ccff)),
    line_highlight: None,
    gutter: Some(Color::from_hex(0xe0e0e0)),
    statusbar_bg: None,
    statusbar_fg: None,
    comment: Some(Color::from_hex(0xc03417)),
    keyword: Some(Color::from_hex(0xc03417)),
    string: Some(Color::from_hex(0xeb2c2c)),
    function: Some(Color::from_hex(0x660066)),
    variable: Some(Color::from_hex(0x000000)),
    r#type: Some(Color::from_hex(0x4848f3)),
    constant: Some(Color::from_hex(0x9d7d4a)),
    operator: Some(Color::from_hex(0x01c1c7)),
    tag: None,
    error: None,
    warning: None,
    info: None,
    success: None,
    red: None,
    orange: None,
    yellow: Some(Color::from_hex(0x32329e)),
    green: Some(Color::from_hex(0xeb2c2c)),
    cyan: Some(Color::from_hex(0x4848f3)),
    blue: Some(Color::from_hex(0x660066)),
    purple: Some(Color::from_hex(0xc03417)),
    magenta: Some(Color::from_hex(0x000080)),
};