chromata 1.0.0

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

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

/// ironman
///
/// Variant: Light
/// Contrast: High
/// Source: vim (vim-colorschemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("ironman"),
    author: Cow::Borrowed(""),
    variant: Variant::Light,
    contrast: Contrast::High,
    bg: Color::from_hex(0xf0f0f0),
    fg: Color::from_hex(0x222222),
    cursor: Some(Color::from_hex(0xde7171)),
    selection: Some(Color::from_hex(0xbddfff)),
    line_highlight: Some(Color::from_hex(0xf6f6f6)),
    gutter: Some(Color::from_hex(0xffffff)),
    statusbar_bg: Some(Color::from_hex(0x8090a0)),
    statusbar_fg: None,
    comment: Some(Color::from_hex(0xa0b0c0)),
    keyword: Some(Color::from_hex(0x005ec4)),
    string: None,
    function: Some(Color::from_hex(0x3e0f70)),
    variable: Some(Color::from_hex(0x339933)),
    r#type: Some(Color::from_hex(0xeb7950)),
    constant: None,
    operator: Some(Color::from_hex(0x0085b1)),
    tag: None,
    error: Some(Color::from_hex(0xff0000)),
    warning: Some(Color::from_hex(0xff6600)),
    info: None,
    success: None,
    red: Some(Color::from_hex(0xff0000)),
    orange: None,
    yellow: Some(Color::from_hex(0xff6600)),
    green: Some(Color::from_hex(0x006800)),
    cyan: Some(Color::from_hex(0xeb7950)),
    blue: Some(Color::from_hex(0x3e0f70)),
    purple: Some(Color::from_hex(0x005ec4)),
    magenta: Some(Color::from_hex(0x0070e6)),
};