chromata 1.0.0

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

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

/// gothic
///
/// Variant: Dark
/// Contrast: High
/// Source: vim (vim-colorschemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("gothic"),
    author: Cow::Borrowed(""),
    variant: Variant::Dark,
    contrast: Contrast::High,
    bg: Color::from_hex(0x000000),
    fg: Color::from_hex(0xefefef),
    cursor: Some(Color::from_hex(0xefefef)),
    selection: None,
    line_highlight: None,
    gutter: None,
    statusbar_bg: None,
    statusbar_fg: None,
    comment: Some(Color::from_hex(0x3030ff)),
    keyword: Some(Color::from_hex(0xffff60)),
    string: None,
    function: Some(Color::from_hex(0x00ffff)),
    variable: Some(Color::from_hex(0x00ffff)),
    r#type: Some(Color::from_hex(0xa0a0ff)),
    constant: Some(Color::from_hex(0xff5050)),
    operator: None,
    tag: None,
    error: None,
    warning: None,
    info: None,
    success: None,
    red: None,
    orange: None,
    yellow: Some(Color::from_hex(0xb0b000)),
    green: None,
    cyan: Some(Color::from_hex(0xa0a0ff)),
    blue: Some(Color::from_hex(0x00ffff)),
    purple: Some(Color::from_hex(0xffff60)),
    magenta: Some(Color::from_hex(0xa0e0a0)),
};