chromata 1.0.0

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

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

/// buddy_modified
///
/// Variant: Dark
/// Contrast: High
/// Source: vim (vim-colorschemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("buddy_modified"),
    author: Cow::Borrowed(""),
    variant: Variant::Dark,
    contrast: Contrast::High,
    bg: Color::from_hex(0x202020),
    fg: Color::from_hex(0xd9d9d9),
    cursor: Some(Color::from_hex(0x656565)),
    selection: Some(Color::from_hex(0x444444)),
    line_highlight: Some(Color::from_hex(0x2d2d2d)),
    gutter: Some(Color::from_hex(0x4d4d4d)),
    statusbar_bg: Some(Color::from_hex(0x444444)),
    statusbar_fg: Some(Color::from_hex(0xfffcf0)),
    comment: Some(Color::from_hex(0xb3b0a3)),
    keyword: Some(Color::from_hex(0xfff200)),
    string: Some(Color::from_hex(0x5dd2fd)),
    function: Some(Color::from_hex(0xf0811f)),
    variable: Some(Color::from_hex(0xf3cf64)),
    r#type: Some(Color::from_hex(0xffb700)),
    constant: Some(Color::from_hex(0xe66450)),
    operator: Some(Color::from_hex(0xfff200)),
    tag: Some(Color::from_hex(0xf0ffe2)),
    error: None,
    warning: None,
    info: None,
    success: None,
    red: None,
    orange: None,
    yellow: Some(Color::from_hex(0xf3cf64)),
    green: Some(Color::from_hex(0x5dd2fd)),
    cyan: Some(Color::from_hex(0xffb700)),
    blue: Some(Color::from_hex(0xf0811f)),
    purple: Some(Color::from_hex(0xfff200)),
    magenta: Some(Color::from_hex(0xcc442f)),
};