chromata 1.0.0

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

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

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