chromata 1.0.0

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

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

/// colorzone
///
/// Variant: Light
/// Contrast: High
/// Source: vim (vim-colorschemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("colorzone"),
    author: Cow::Borrowed(""),
    variant: Variant::Light,
    contrast: Contrast::High,
    bg: Color::from_hex(0xeeeeec),
    fg: Color::from_hex(0x2e3436),
    cursor: Some(Color::from_hex(0xef2929)),
    selection: Some(Color::from_hex(0x6b8e23)),
    line_highlight: Some(Color::from_hex(0xeeeeec)),
    gutter: Some(Color::from_hex(0x2e3436)),
    statusbar_bg: Some(Color::from_hex(0xfff8dc)),
    statusbar_fg: None,
    comment: Some(Color::from_hex(0x888a87)),
    keyword: Some(Color::from_hex(0x4e9a06)),
    string: Some(Color::from_hex(0x8a2be2)),
    function: None,
    variable: Some(Color::from_hex(0x000000)),
    r#type: Some(Color::from_hex(0x4e9a06)),
    constant: Some(Color::from_hex(0xce5c00)),
    operator: Some(Color::from_hex(0x4169e1)),
    tag: None,
    error: Some(Color::from_hex(0xeeeeec)),
    warning: Some(Color::from_hex(0xcc0000)),
    info: None,
    success: None,
    red: Some(Color::from_hex(0xeeeeec)),
    orange: None,
    yellow: Some(Color::from_hex(0xcc0000)),
    green: Some(Color::from_hex(0x8a2be2)),
    cyan: Some(Color::from_hex(0x4e9a06)),
    blue: None,
    purple: Some(Color::from_hex(0x4e9a06)),
    magenta: None,
};