chromata 1.0.0

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

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

/// desert
///
/// Variant: Dark
/// Contrast: High
/// Source: vim (vim-colorschemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("desert"),
    author: Cow::Borrowed(""),
    variant: Variant::Dark,
    contrast: Contrast::High,
    bg: Color::from_hex(0x333333),
    fg: Color::from_hex(0xffffff),
    cursor: Some(Color::from_hex(0xf0e68c)),
    selection: Some(Color::from_hex(0x6b8e24)),
    line_highlight: Some(Color::from_hex(0x666666)),
    gutter: Some(Color::from_hex(0xeeee00)),
    statusbar_bg: Some(Color::from_hex(0xc2bfa5)),
    statusbar_fg: Some(Color::from_hex(0x333333)),
    comment: Some(Color::from_hex(0x6dceeb)),
    keyword: Some(Color::from_hex(0xf0e68c)),
    string: None,
    function: Some(Color::from_hex(0x89fb98)),
    variable: Some(Color::from_hex(0x89fb98)),
    r#type: Some(Color::from_hex(0xbdb76b)),
    constant: Some(Color::from_hex(0xffa0a0)),
    operator: None,
    tag: None,
    error: Some(Color::from_hex(0xff0000)),
    warning: Some(Color::from_hex(0xcd5c5c)),
    info: None,
    success: None,
    red: Some(Color::from_hex(0xff0000)),
    orange: None,
    yellow: Some(Color::from_hex(0xcd5c5c)),
    green: Some(Color::from_hex(0xffffff)),
    cyan: Some(Color::from_hex(0xbdb76b)),
    blue: Some(Color::from_hex(0x89fb98)),
    purple: Some(Color::from_hex(0xf0e68c)),
    magenta: Some(Color::from_hex(0xcd5c5c)),
};