chromata 1.0.0

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

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

/// relaxedgreen
///
/// Variant: Dark
/// Contrast: Normal
/// Source: vim (vim-colorschemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("relaxedgreen"),
    author: Cow::Borrowed(""),
    variant: Variant::Dark,
    contrast: Contrast::Normal,
    bg: Color::from_hex(0x000000),
    fg: Color::from_hex(0xaaaaaa),
    cursor: Some(Color::from_hex(0x559955)),
    selection: Some(Color::from_hex(0x336633)),
    line_highlight: Some(Color::from_hex(0x333366)),
    gutter: Some(Color::from_hex(0x00ff00)),
    statusbar_bg: Some(Color::from_hex(0x228822)),
    statusbar_fg: Some(Color::from_hex(0x000000)),
    comment: Some(Color::from_hex(0x00a594)),
    keyword: Some(Color::from_hex(0xac0000)),
    string: Some(Color::from_hex(0x0099dd)),
    function: Some(Color::from_hex(0x22bb22)),
    variable: Some(Color::from_hex(0x008800)),
    r#type: Some(Color::from_hex(0x559955)),
    constant: Some(Color::from_hex(0x0099dd)),
    operator: Some(Color::from_hex(0x00ff00)),
    tag: Some(Color::from_hex(0x00ff00)),
    error: Some(Color::from_hex(0xffffff)),
    warning: Some(Color::from_hex(0x000000)),
    info: None,
    success: None,
    red: Some(Color::from_hex(0xffffff)),
    orange: None,
    yellow: Some(Color::from_hex(0x000000)),
    green: Some(Color::from_hex(0x0099dd)),
    cyan: Some(Color::from_hex(0x559955)),
    blue: Some(Color::from_hex(0x22bb22)),
    purple: Some(Color::from_hex(0xac0000)),
    magenta: Some(Color::from_hex(0x22bb22)),
};