chromata 1.0.0

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

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

/// mizore
///
/// Variant: Dark
/// Contrast: High
/// Source: vim (vim-colorschemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("mizore"),
    author: Cow::Borrowed(""),
    variant: Variant::Dark,
    contrast: Contrast::High,
    bg: Color::from_hex(0x000000),
    fg: Color::from_hex(0x00ffff),
    cursor: Some(Color::from_hex(0xffff99)),
    selection: Some(Color::from_hex(0x003040)),
    line_highlight: Some(Color::from_hex(0x3b3b3b)),
    gutter: Some(Color::from_hex(0x928c75)),
    statusbar_bg: Some(Color::from_hex(0xc2bfa5)),
    statusbar_fg: Some(Color::from_hex(0x222222)),
    comment: Some(Color::from_hex(0xb0b0b0)),
    keyword: Some(Color::from_hex(0xffffff)),
    string: None,
    function: Some(Color::from_hex(0x2080ff)),
    variable: Some(Color::from_hex(0xffffff)),
    r#type: Some(Color::from_hex(0xffffff)),
    constant: Some(Color::from_hex(0xe080ff)),
    operator: Some(Color::from_hex(0xffffff)),
    tag: None,
    error: Some(Color::from_hex(0xff0000)),
    warning: Some(Color::from_hex(0xccae22)),
    info: None,
    success: None,
    red: Some(Color::from_hex(0xff0000)),
    orange: None,
    yellow: Some(Color::from_hex(0xccae22)),
    green: Some(Color::from_hex(0xff00ff)),
    cyan: Some(Color::from_hex(0xffffff)),
    blue: Some(Color::from_hex(0x2080ff)),
    purple: Some(Color::from_hex(0xffffff)),
    magenta: Some(Color::from_hex(0x8070ff)),
};