chromata 1.0.0

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

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

/// wildcharm
///
/// Variant: Light
/// Contrast: High
/// Source: vim (vim-colorschemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("wildcharm"),
    author: Cow::Borrowed(""),
    variant: Variant::Light,
    contrast: Contrast::High,
    bg: Color::from_hex(0xffffff),
    fg: Color::from_hex(0x000000),
    cursor: Some(Color::from_hex(0x000000)),
    selection: Some(Color::from_hex(0xbfdfff)),
    line_highlight: Some(Color::from_hex(0xeeeeee)),
    gutter: Some(Color::from_hex(0xa8a8a8)),
    statusbar_bg: Some(Color::from_hex(0x5f5f5f)),
    statusbar_fg: Some(Color::from_hex(0xffffff)),
    comment: Some(Color::from_hex(0x8a8a8a)),
    keyword: Some(Color::from_hex(0x005faf)),
    string: Some(Color::from_hex(0x008700)),
    function: Some(Color::from_hex(0x870087)),
    variable: Some(Color::from_hex(0x870087)),
    r#type: Some(Color::from_hex(0xaf5f00)),
    constant: Some(Color::from_hex(0xaf0000)),
    operator: None,
    tag: None,
    error: Some(Color::from_hex(0xd70000)),
    warning: Some(Color::from_hex(0xaf5f00)),
    info: None,
    success: None,
    red: Some(Color::from_hex(0xd70000)),
    orange: None,
    yellow: Some(Color::from_hex(0xaf5f00)),
    green: Some(Color::from_hex(0x008700)),
    cyan: Some(Color::from_hex(0xaf5f00)),
    blue: Some(Color::from_hex(0x870087)),
    purple: Some(Color::from_hex(0x005faf)),
    magenta: Some(Color::from_hex(0x008787)),
};