chromata 1.0.0

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

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

/// maui
///
/// Variant: Dark
/// Contrast: High
/// Source: vim (vim-colorschemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("maui"),
    author: Cow::Borrowed(""),
    variant: Variant::Dark,
    contrast: Contrast::High,
    bg: Color::from_hex(0x151515),
    fg: Color::from_hex(0xd0d0d0),
    cursor: Some(Color::from_hex(0xdadada)),
    selection: Some(Color::from_hex(0x003366)),
    line_highlight: Some(Color::from_hex(0x000000)),
    gutter: Some(Color::from_hex(0x303030)),
    statusbar_bg: Some(Color::from_hex(0x303030)),
    statusbar_fg: Some(Color::from_hex(0x5f87af)),
    comment: Some(Color::from_hex(0x585858)),
    keyword: Some(Color::from_hex(0xdf005f)),
    string: Some(Color::from_hex(0x87af87)),
    function: Some(Color::from_hex(0x5f87af)),
    variable: Some(Color::from_hex(0x5f87af)),
    r#type: Some(Color::from_hex(0x5f87df)),
    constant: Some(Color::from_hex(0xdf005f)),
    operator: Some(Color::from_hex(0xdf005f)),
    tag: Some(Color::from_hex(0xdf005f)),
    error: Some(Color::from_hex(0xff00af)),
    warning: Some(Color::from_hex(0xffffff)),
    info: None,
    success: None,
    red: Some(Color::from_hex(0xff00af)),
    orange: None,
    yellow: Some(Color::from_hex(0xffffff)),
    green: Some(Color::from_hex(0x87af87)),
    cyan: Some(Color::from_hex(0x5f87df)),
    blue: Some(Color::from_hex(0x5f87af)),
    purple: Some(Color::from_hex(0xdf005f)),
    magenta: Some(Color::from_hex(0x87af5f)),
};