chromata 1.0.0

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

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

/// native
///
/// Variant: Dark
/// Contrast: High
/// Source: vim (vim-colorschemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("native"),
    author: Cow::Borrowed(""),
    variant: Variant::Dark,
    contrast: Contrast::High,
    bg: Color::from_hex(0x222222),
    fg: Color::from_hex(0xf2f2f2),
    cursor: Some(Color::from_hex(0xaaaaaa)),
    selection: None,
    line_highlight: None,
    gutter: None,
    statusbar_bg: Some(Color::from_hex(0x8090a0)),
    statusbar_fg: None,
    comment: Some(Color::from_hex(0x999999)),
    keyword: Some(Color::from_hex(0x6ab825)),
    string: Some(Color::from_hex(0xed9d13)),
    function: Some(Color::from_hex(0x447fcf)),
    variable: None,
    r#type: Some(Color::from_hex(0xbbbbbb)),
    constant: Some(Color::from_hex(0xed9d13)),
    operator: None,
    tag: None,
    error: None,
    warning: None,
    info: None,
    success: None,
    red: Some(Color::from_hex(0x000080)),
    orange: None,
    yellow: None,
    green: Some(Color::from_hex(0xed9d13)),
    cyan: Some(Color::from_hex(0xbbbbbb)),
    blue: Some(Color::from_hex(0x447fcf)),
    purple: Some(Color::from_hex(0x6ab825)),
    magenta: Some(Color::from_hex(0xcd2828)),
};