chromata 1.0.0

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

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

/// moody
///
/// Variant: Dark
/// Contrast: High
/// Source: vim (vim-colorschemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("moody"),
    author: Cow::Borrowed(""),
    variant: Variant::Dark,
    contrast: Contrast::High,
    bg: Color::from_hex(0x121212),
    fg: Color::from_hex(0xc6c6c6),
    cursor: Some(Color::from_hex(0xafd75f)),
    selection: Some(Color::from_hex(0xffffaf)),
    line_highlight: Some(Color::from_hex(0x1c1c1c)),
    gutter: Some(Color::from_hex(0x444444)),
    statusbar_bg: Some(Color::from_hex(0x262626)),
    statusbar_fg: Some(Color::from_hex(0xbcbcbc)),
    comment: Some(Color::from_hex(0x4e4e4e)),
    keyword: Some(Color::from_hex(0x87afd7)),
    string: Some(Color::from_hex(0xafaf87)),
    function: Some(Color::from_hex(0x5faf87)),
    variable: Some(Color::from_hex(0xafd7af)),
    r#type: Some(Color::from_hex(0x87d7d7)),
    constant: Some(Color::from_hex(0xafaf87)),
    operator: Some(Color::from_hex(0x87afd7)),
    tag: Some(Color::from_hex(0x878787)),
    error: Some(Color::from_hex(0xaf0000)),
    warning: Some(Color::from_hex(0xff8787)),
    info: None,
    success: None,
    red: Some(Color::from_hex(0xaf0000)),
    orange: None,
    yellow: Some(Color::from_hex(0xff8787)),
    green: Some(Color::from_hex(0xafaf87)),
    cyan: Some(Color::from_hex(0x87d7d7)),
    blue: Some(Color::from_hex(0x5faf87)),
    purple: Some(Color::from_hex(0x87afd7)),
    magenta: Some(Color::from_hex(0x87af87)),
};