chromata 1.0.0

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

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

/// base
///
/// Variant: Dark
/// Contrast: High
/// Source: vim (vim-colorschemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("base"),
    author: Cow::Borrowed(""),
    variant: Variant::Dark,
    contrast: Contrast::High,
    bg: Color::from_hex(0x000000),
    fg: Color::from_hex(0xd3d3d3),
    cursor: Some(Color::from_hex(0xffffff)),
    selection: Some(Color::from_hex(0x001bb3)),
    line_highlight: Some(Color::from_hex(0x151515)),
    gutter: Some(Color::from_hex(0x6a6a6a)),
    statusbar_bg: Some(Color::from_hex(0x3d3d3d)),
    statusbar_fg: Some(Color::from_hex(0xd3d3d3)),
    comment: Some(Color::from_hex(0xff7d27)),
    keyword: Some(Color::from_hex(0x00ffff)),
    string: Some(Color::from_hex(0xff9e7b)),
    function: Some(Color::from_hex(0x81cef9)),
    variable: Some(Color::from_hex(0x94fe9a)),
    r#type: None,
    constant: None,
    operator: Some(Color::from_hex(0x00ffff)),
    tag: Some(Color::from_hex(0x9ccff4)),
    error: Some(Color::from_hex(0xffffff)),
    warning: Some(Color::from_hex(0xffffff)),
    info: None,
    success: None,
    red: Some(Color::from_hex(0xffffff)),
    orange: None,
    yellow: Some(Color::from_hex(0xffffff)),
    green: Some(Color::from_hex(0xff9e7b)),
    cyan: None,
    blue: Some(Color::from_hex(0x81cef9)),
    purple: Some(Color::from_hex(0x00ffff)),
    magenta: Some(Color::from_hex(0x00ffff)),
};