chromata 1.0.0

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

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

/// boa
///
/// Variant: Dark
/// Contrast: Normal
/// Source: vim (vim-colorschemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("boa"),
    author: Cow::Borrowed(""),
    variant: Variant::Dark,
    contrast: Contrast::Normal,
    bg: Color::from_hex(0x171202),
    fg: Color::from_hex(0xc2b7a9),
    cursor: None,
    selection: Some(Color::from_hex(0x283238)),
    line_highlight: Some(Color::from_hex(0x1f1b11)),
    gutter: Some(Color::from_hex(0x5a4c44)),
    statusbar_bg: Some(Color::from_hex(0x48382f)),
    statusbar_fg: None,
    comment: Some(Color::from_hex(0x725749)),
    keyword: Some(Color::from_hex(0xe36660)),
    string: Some(Color::from_hex(0x608f76)),
    function: Some(Color::from_hex(0xbf905f)),
    variable: Some(Color::from_hex(0xc2b7a9)),
    r#type: Some(Color::from_hex(0x8797c1)),
    constant: Some(Color::from_hex(0xa986b6)),
    operator: Some(Color::from_hex(0xabb6ba)),
    tag: None,
    error: Some(Color::from_hex(0xe36660)),
    warning: Some(Color::from_hex(0xb58b4e)),
    info: None,
    success: None,
    red: Some(Color::from_hex(0xe36660)),
    orange: None,
    yellow: Some(Color::from_hex(0xb58b4e)),
    green: Some(Color::from_hex(0x608f76)),
    cyan: Some(Color::from_hex(0x8797c1)),
    blue: Some(Color::from_hex(0xbf905f)),
    purple: Some(Color::from_hex(0xe36660)),
    magenta: Some(Color::from_hex(0xe36660)),
};