chromata 1.0.0

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

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

/// moss
///
/// Variant: Dark
/// Contrast: Normal
/// Source: vim (vim-colorschemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("moss"),
    author: Cow::Borrowed(""),
    variant: Variant::Dark,
    contrast: Contrast::Normal,
    bg: Color::from_hex(0x082926),
    fg: Color::from_hex(0xafd7d7),
    cursor: Some(Color::from_hex(0x5fd75f)),
    selection: Some(Color::from_hex(0x22364c)),
    line_highlight: Some(Color::from_hex(0x063c36)),
    gutter: Some(Color::from_hex(0xafd7af)),
    statusbar_bg: Some(Color::from_hex(0x334680)),
    statusbar_fg: Some(Color::from_hex(0xd7d7af)),
    comment: Some(Color::from_hex(0x87875f)),
    keyword: Some(Color::from_hex(0x00d75f)),
    string: Some(Color::from_hex(0x87d7d7)),
    function: Some(Color::from_hex(0x5fd7af)),
    variable: Some(Color::from_hex(0x5fafd7)),
    r#type: Some(Color::from_hex(0x00afd7)),
    constant: Some(Color::from_hex(0x87d7d7)),
    operator: Some(Color::from_hex(0x5fd787)),
    tag: Some(Color::from_hex(0x5f5fd7)),
    error: Some(Color::from_hex(0xffff87)),
    warning: Some(Color::from_hex(0xffd700)),
    info: None,
    success: None,
    red: Some(Color::from_hex(0xffff87)),
    orange: None,
    yellow: Some(Color::from_hex(0xffd700)),
    green: Some(Color::from_hex(0x87d7d7)),
    cyan: Some(Color::from_hex(0x00afd7)),
    blue: Some(Color::from_hex(0x5fd7af)),
    purple: Some(Color::from_hex(0x00d75f)),
    magenta: Some(Color::from_hex(0x005fd7)),
};