chromata 1.0.0

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

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

/// meta5
///
/// Variant: Dark
/// Contrast: Normal
/// Source: vim (vim-colorschemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("meta5"),
    author: Cow::Borrowed(""),
    variant: Variant::Dark,
    contrast: Contrast::Normal,
    bg: Color::from_hex(0x1c1c1c),
    fg: Color::from_hex(0xbcbcbc),
    cursor: Some(Color::from_hex(0xd0d0d0)),
    selection: Some(Color::from_hex(0x4e4e4e)),
    line_highlight: Some(Color::from_hex(0x262626)),
    gutter: Some(Color::from_hex(0x808080)),
    statusbar_bg: Some(Color::from_hex(0x080808)),
    statusbar_fg: Some(Color::from_hex(0x005f5f)),
    comment: Some(Color::from_hex(0x808080)),
    keyword: Some(Color::from_hex(0xdfffff)),
    string: Some(Color::from_hex(0x0087df)),
    function: Some(Color::from_hex(0xdf8700)),
    variable: Some(Color::from_hex(0x00afff)),
    r#type: Some(Color::from_hex(0x87dfff)),
    constant: Some(Color::from_hex(0xaf5fff)),
    operator: Some(Color::from_hex(0x8787ff)),
    tag: None,
    error: Some(Color::from_hex(0xffffff)),
    warning: Some(Color::from_hex(0xafffff)),
    info: None,
    success: None,
    red: Some(Color::from_hex(0xffffff)),
    orange: None,
    yellow: Some(Color::from_hex(0xafffff)),
    green: Some(Color::from_hex(0x0087df)),
    cyan: Some(Color::from_hex(0x87dfff)),
    blue: Some(Color::from_hex(0xdf8700)),
    purple: Some(Color::from_hex(0xdfffff)),
    magenta: Some(Color::from_hex(0x00afff)),
};