chromata 1.0.0

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

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

/// doorhinge
///
/// Variant: Dark
/// Contrast: Normal
/// Source: vim (vim-colorschemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("doorhinge"),
    author: Cow::Borrowed(""),
    variant: Variant::Dark,
    contrast: Contrast::Normal,
    bg: Color::from_hex(0x405871),
    fg: Color::from_hex(0xbfcfff),
    cursor: Some(Color::from_hex(0x25345f)),
    selection: Some(Color::from_hex(0x25345f)),
    line_highlight: Some(Color::from_hex(0x5b738c)),
    gutter: Some(Color::from_hex(0x25345f)),
    statusbar_bg: Some(Color::from_hex(0x25345f)),
    statusbar_fg: Some(Color::from_hex(0x647c95)),
    comment: Some(Color::from_hex(0x5ea7dd)),
    keyword: Some(Color::from_hex(0xffffff)),
    string: None,
    function: None,
    variable: Some(Color::from_hex(0xbbbbbb)),
    r#type: Some(Color::from_hex(0x80c9ff)),
    constant: Some(Color::from_hex(0xff9911)),
    operator: None,
    tag: Some(Color::from_hex(0xb0e0e6)),
    error: None,
    warning: None,
    info: None,
    success: None,
    red: Some(Color::from_hex(0xdddddd)),
    orange: None,
    yellow: Some(Color::from_hex(0xff9911)),
    green: None,
    cyan: Some(Color::from_hex(0x80c9ff)),
    blue: None,
    purple: Some(Color::from_hex(0xffffff)),
    magenta: Some(Color::from_hex(0x999999)),
};