chromata 1.0.0

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

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

/// obsidian
///
/// Variant: Dark
/// Contrast: High
/// Source: vim (vim-colorschemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("obsidian"),
    author: Cow::Borrowed(""),
    variant: Variant::Dark,
    contrast: Contrast::High,
    bg: Color::from_hex(0x201f1f),
    fg: Color::from_hex(0xd4d2cf),
    cursor: Some(Color::from_hex(0x0078ff)),
    selection: Some(Color::from_hex(0x1a2b40)),
    line_highlight: Some(Color::from_hex(0x202438)),
    gutter: Some(Color::from_hex(0xb4d3b1)),
    statusbar_bg: Some(Color::from_hex(0x1c2c3f)),
    statusbar_fg: Some(Color::from_hex(0x508ed8)),
    comment: Some(Color::from_hex(0x787775)),
    keyword: Some(Color::from_hex(0xaa3000)),
    string: Some(Color::from_hex(0xe85848)),
    function: Some(Color::from_hex(0x8e79a5)),
    variable: Some(Color::from_hex(0x508ed8)),
    r#type: Some(Color::from_hex(0x508ed8)),
    constant: Some(Color::from_hex(0xff0000)),
    operator: Some(Color::from_hex(0xff9fec)),
    tag: Some(Color::from_hex(0xc00000)),
    error: Some(Color::from_hex(0xe85848)),
    warning: Some(Color::from_hex(0xe5786d)),
    info: None,
    success: None,
    red: Some(Color::from_hex(0xe85848)),
    orange: None,
    yellow: Some(Color::from_hex(0xe5786d)),
    green: Some(Color::from_hex(0xe85848)),
    cyan: Some(Color::from_hex(0x508ed8)),
    blue: Some(Color::from_hex(0x8e79a5)),
    purple: Some(Color::from_hex(0xaa3000)),
    magenta: Some(Color::from_hex(0x78b753)),
};