chromata 1.0.0

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

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

/// mayansmoke
///
/// Variant: Light
/// Contrast: High
/// Source: vim (vim-colorschemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("mayansmoke"),
    author: Cow::Borrowed(""),
    variant: Variant::Light,
    contrast: Contrast::High,
    bg: Color::from_hex(0xf4f4e8),
    fg: Color::from_hex(0x000000),
    cursor: Some(Color::from_hex(0x000000)),
    selection: Some(Color::from_hex(0xafd7ff)),
    line_highlight: Some(Color::from_hex(0xfffdd0)),
    gutter: Some(Color::from_hex(0x666677)),
    statusbar_bg: Some(Color::from_hex(0x557788)),
    statusbar_fg: Some(Color::from_hex(0xfffeee)),
    comment: Some(Color::from_hex(0x96aac2)),
    keyword: Some(Color::from_hex(0x00d7ff)),
    string: Some(Color::from_hex(0x008787)),
    function: Some(Color::from_hex(0xaf5f87)),
    variable: Some(Color::from_hex(0xd70000)),
    r#type: Some(Color::from_hex(0xafafff)),
    constant: Some(Color::from_hex(0xffaf00)),
    operator: None,
    tag: None,
    error: Some(Color::from_hex(0xd70000)),
    warning: None,
    info: None,
    success: None,
    red: Some(Color::from_hex(0xd70000)),
    orange: None,
    yellow: Some(Color::from_hex(0x5f8700)),
    green: Some(Color::from_hex(0x008787)),
    cyan: Some(Color::from_hex(0xafafff)),
    blue: Some(Color::from_hex(0xaf5f87)),
    purple: Some(Color::from_hex(0x00d7ff)),
    magenta: Some(Color::from_hex(0x005fff)),
};