chromata 1.0.0

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

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

/// quagmire
///
/// Variant: Dark
/// Contrast: High
/// Source: vim (vim-colorschemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("quagmire"),
    author: Cow::Borrowed(""),
    variant: Variant::Dark,
    contrast: Contrast::High,
    bg: Color::from_hex(0x0b0a0a),
    fg: Color::from_hex(0xcfcfcf),
    cursor: None,
    selection: Some(Color::from_hex(0x3a3a3a)),
    line_highlight: Some(Color::from_hex(0x11100c)),
    gutter: Some(Color::from_hex(0x888888)),
    statusbar_bg: None,
    statusbar_fg: Some(Color::from_hex(0x44444e)),
    comment: Some(Color::from_hex(0x44444e)),
    keyword: Some(Color::from_hex(0xdbb800)),
    string: Some(Color::from_hex(0x4d6537)),
    function: Some(Color::from_hex(0xe16521)),
    variable: Some(Color::from_hex(0xae5251)),
    r#type: Some(Color::from_hex(0xf6f080)),
    constant: Some(Color::from_hex(0xc0a368)),
    operator: Some(Color::from_hex(0x988155)),
    tag: None,
    error: Some(Color::from_hex(0xffffff)),
    warning: None,
    info: None,
    success: None,
    red: Some(Color::from_hex(0xffffff)),
    orange: None,
    yellow: Some(Color::from_hex(0xebac47)),
    green: Some(Color::from_hex(0x4d6537)),
    cyan: Some(Color::from_hex(0xf6f080)),
    blue: Some(Color::from_hex(0xe16521)),
    purple: Some(Color::from_hex(0xdbb800)),
    magenta: Some(Color::from_hex(0x8996ab)),
};