chromata 1.0.0

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

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

/// hhviolet
///
/// Variant: Dark
/// Contrast: Normal
/// Source: vim (vim-colorschemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("hhviolet"),
    author: Cow::Borrowed(""),
    variant: Variant::Dark,
    contrast: Contrast::Normal,
    bg: Color::from_hex(0x262233),
    fg: Color::from_hex(0x9388bb),
    cursor: Some(Color::from_hex(0xa499cc)),
    selection: Some(Color::from_hex(0x6d6688)),
    line_highlight: None,
    gutter: Some(Color::from_hex(0x686475)),
    statusbar_bg: Some(Color::from_hex(0x13101c)),
    statusbar_fg: None,
    comment: Some(Color::from_hex(0x662088)),
    keyword: Some(Color::from_hex(0x668aaa)),
    string: None,
    function: None,
    variable: Some(Color::from_hex(0x7c69be)),
    r#type: Some(Color::from_hex(0x7733cc)),
    constant: Some(Color::from_hex(0x774499)),
    operator: None,
    tag: None,
    error: None,
    warning: None,
    info: None,
    success: None,
    red: None,
    orange: None,
    yellow: Some(Color::from_hex(0x9b66bb)),
    green: None,
    cyan: Some(Color::from_hex(0x7733cc)),
    blue: None,
    purple: Some(Color::from_hex(0x668aaa)),
    magenta: Some(Color::from_hex(0x5c5577)),
};