chromata 1.0.0

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

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

/// kalahari
///
/// Variant: Dark
/// Contrast: High
/// Source: vim (vim-colorschemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("kalahari"),
    author: Cow::Borrowed(""),
    variant: Variant::Dark,
    contrast: Contrast::High,
    bg: Color::from_hex(0x1c1c1c),
    fg: Color::from_hex(0xeeeeee),
    cursor: Some(Color::from_hex(0xffd787)),
    selection: Some(Color::from_hex(0x5f87d7)),
    line_highlight: Some(Color::from_hex(0x303030)),
    gutter: Some(Color::from_hex(0x808080)),
    statusbar_bg: Some(Color::from_hex(0x000000)),
    statusbar_fg: Some(Color::from_hex(0xafafaf)),
    comment: Some(Color::from_hex(0x9e9e9e)),
    keyword: Some(Color::from_hex(0x00afff)),
    string: None,
    function: None,
    variable: Some(Color::from_hex(0x87ff87)),
    r#type: Some(Color::from_hex(0xd7af00)),
    constant: Some(Color::from_hex(0xffafaf)),
    operator: None,
    tag: None,
    error: Some(Color::from_hex(0xc0c0c0)),
    warning: Some(Color::from_hex(0xff875f)),
    info: None,
    success: None,
    red: Some(Color::from_hex(0xc0c0c0)),
    orange: None,
    yellow: Some(Color::from_hex(0xff875f)),
    green: None,
    cyan: Some(Color::from_hex(0xd7af00)),
    blue: None,
    purple: Some(Color::from_hex(0x00afff)),
    magenta: Some(Color::from_hex(0xd75f5f)),
};