chromata 1.0.0

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

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

/// jaime
///
/// Variant: Light
/// Contrast: High
/// Source: vim (vim-colorschemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("jaime"),
    author: Cow::Borrowed(""),
    variant: Variant::Light,
    contrast: Contrast::High,
    bg: Color::from_hex(0xfefefe),
    fg: Color::from_hex(0x000000),
    cursor: Some(Color::from_hex(0xde8544)),
    selection: Some(Color::from_hex(0xffcb69)),
    line_highlight: Some(Color::from_hex(0xffcb69)),
    gutter: Some(Color::from_hex(0x99968b)),
    statusbar_bg: Some(Color::from_hex(0x888888)),
    statusbar_fg: Some(Color::from_hex(0xffcc66)),
    comment: Some(Color::from_hex(0x99968b)),
    keyword: Some(Color::from_hex(0x0000ff)),
    string: Some(Color::from_hex(0x00aa00)),
    function: Some(Color::from_hex(0x000000)),
    variable: Some(Color::from_hex(0x95ab64)),
    r#type: Some(Color::from_hex(0x95ab64)),
    constant: Some(Color::from_hex(0x800000)),
    operator: None,
    tag: None,
    error: None,
    warning: None,
    info: None,
    success: None,
    red: None,
    orange: None,
    yellow: Some(Color::from_hex(0x008040)),
    green: Some(Color::from_hex(0x00aa00)),
    cyan: Some(Color::from_hex(0x95ab64)),
    blue: Some(Color::from_hex(0x000000)),
    purple: Some(Color::from_hex(0x0000ff)),
    magenta: Some(Color::from_hex(0xe5786d)),
};