chromata 1.0.0

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

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

/// bvemu
///
/// Variant: Dark
/// Contrast: Normal
/// Source: vim (vim-colorschemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("bvemu"),
    author: Cow::Borrowed(""),
    variant: Variant::Dark,
    contrast: Contrast::Normal,
    bg: Color::from_hex(0x202020),
    fg: Color::from_hex(0x949f92),
    cursor: Some(Color::from_hex(0xa3e3ed)),
    selection: Some(Color::from_hex(0xcfe4ff)),
    line_highlight: Some(Color::from_hex(0x202438)),
    gutter: Some(Color::from_hex(0x818698)),
    statusbar_bg: Some(Color::from_hex(0x363946)),
    statusbar_fg: Some(Color::from_hex(0xe0e0e0)),
    comment: Some(Color::from_hex(0x887c6b)),
    keyword: Some(Color::from_hex(0xc19a6b)),
    string: Some(Color::from_hex(0xadadad)),
    function: Some(Color::from_hex(0xc4ad87)),
    variable: Some(Color::from_hex(0xc4ad87)),
    r#type: Some(Color::from_hex(0x60a0b7)),
    constant: Some(Color::from_hex(0x8cd0d3)),
    operator: Some(Color::from_hex(0x1560bd)),
    tag: Some(Color::from_hex(0xfbec5d)),
    error: Some(Color::from_hex(0xee0000)),
    warning: Some(Color::from_hex(0xe5786d)),
    info: None,
    success: None,
    red: Some(Color::from_hex(0xee0000)),
    orange: None,
    yellow: Some(Color::from_hex(0xe5786d)),
    green: Some(Color::from_hex(0xadadad)),
    cyan: Some(Color::from_hex(0x60a0b7)),
    blue: Some(Color::from_hex(0xc4ad87)),
    purple: Some(Color::from_hex(0xc19a6b)),
    magenta: Some(Color::from_hex(0xd82626)),
};