chromata 1.0.0

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

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

/// lettuce
///
/// Variant: Dark
/// Contrast: High
/// Source: vim (vim-colorschemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("lettuce"),
    author: Cow::Borrowed(""),
    variant: Variant::Dark,
    contrast: Contrast::High,
    bg: Color::from_hex(0x080808),
    fg: Color::from_hex(0xdfdfff),
    cursor: None,
    selection: Some(Color::from_hex(0x005f87)),
    line_highlight: Some(Color::from_hex(0x1c1c1c)),
    gutter: Some(Color::from_hex(0x444444)),
    statusbar_bg: Some(Color::from_hex(0x303030)),
    statusbar_fg: Some(Color::from_hex(0xffffff)),
    comment: Some(Color::from_hex(0xaf8787)),
    keyword: Some(Color::from_hex(0x5f5fff)),
    string: Some(Color::from_hex(0xffaf5f)),
    function: Some(Color::from_hex(0xff8787)),
    variable: Some(Color::from_hex(0xdfdf87)),
    r#type: Some(Color::from_hex(0x5faf5f)),
    constant: Some(Color::from_hex(0xffaf5f)),
    operator: Some(Color::from_hex(0x5fafff)),
    tag: None,
    error: Some(Color::from_hex(0xeeeeee)),
    warning: Some(Color::from_hex(0xeeeeee)),
    info: None,
    success: None,
    red: Some(Color::from_hex(0xeeeeee)),
    orange: None,
    yellow: Some(Color::from_hex(0xeeeeee)),
    green: Some(Color::from_hex(0xffaf5f)),
    cyan: Some(Color::from_hex(0x5faf5f)),
    blue: Some(Color::from_hex(0xff8787)),
    purple: Some(Color::from_hex(0x5f5fff)),
    magenta: Some(Color::from_hex(0x00af87)),
};