chromata 1.0.0

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

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

/// gemcolors
///
/// Variant: Dark
/// Contrast: High
/// Source: vim (vim-colorschemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("gemcolors"),
    author: Cow::Borrowed(""),
    variant: Variant::Dark,
    contrast: Contrast::High,
    bg: Color::from_hex(0x141414),
    fg: Color::from_hex(0xf8f8f8),
    cursor: Some(Color::from_hex(0xc03030)),
    selection: Some(Color::from_hex(0xc03030)),
    line_highlight: Some(Color::from_hex(0xc03030)),
    gutter: Some(Color::from_hex(0xacacac)),
    statusbar_bg: Some(Color::from_hex(0x2f2f2f)),
    statusbar_fg: Some(Color::from_hex(0xf8f8f8)),
    comment: Some(Color::from_hex(0x494949)),
    keyword: Some(Color::from_hex(0xff7700)),
    string: Some(Color::from_hex(0xc03030)),
    function: Some(Color::from_hex(0x9b703f)),
    variable: Some(Color::from_hex(0x8f9d6a)),
    r#type: Some(Color::from_hex(0xf9ee98)),
    constant: Some(Color::from_hex(0x8f9d6a)),
    operator: None,
    tag: None,
    error: Some(Color::from_hex(0xff0000)),
    warning: Some(Color::from_hex(0xff0000)),
    info: None,
    success: None,
    red: Some(Color::from_hex(0xff0000)),
    orange: None,
    yellow: Some(Color::from_hex(0xff0000)),
    green: Some(Color::from_hex(0xc03030)),
    cyan: Some(Color::from_hex(0xf9ee98)),
    blue: Some(Color::from_hex(0x9b703f)),
    purple: Some(Color::from_hex(0xff7700)),
    magenta: Some(Color::from_hex(0xcda869)),
};