chromata 1.0.0

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

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

/// thornbird
///
/// Variant: Dark
/// Contrast: High
/// Source: vim (vim-colorschemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("thornbird"),
    author: Cow::Borrowed(""),
    variant: Variant::Dark,
    contrast: Contrast::High,
    bg: Color::from_hex(0x372725),
    fg: Color::from_hex(0xe6e1c4),
    cursor: Some(Color::from_hex(0xdbf5f3)),
    selection: Some(Color::from_hex(0x49483e)),
    line_highlight: Some(Color::from_hex(0x3c3d37)),
    gutter: Some(Color::from_hex(0x90908a)),
    statusbar_bg: Some(Color::from_hex(0x6a5d53)),
    statusbar_fg: Some(Color::from_hex(0xe6e1c4)),
    comment: Some(Color::from_hex(0x75715e)),
    keyword: Some(Color::from_hex(0xef5d32)),
    string: Some(Color::from_hex(0xd9d762)),
    function: Some(Color::from_hex(0xefac32)),
    variable: Some(Color::from_hex(0xef5d32)),
    r#type: Some(Color::from_hex(0xefac32)),
    constant: Some(Color::from_hex(0x6c99bb)),
    operator: Some(Color::from_hex(0xef5d32)),
    tag: Some(Color::from_hex(0xefac32)),
    error: None,
    warning: None,
    info: None,
    success: None,
    red: Some(Color::from_hex(0x8e0807)),
    orange: None,
    yellow: Some(Color::from_hex(0xe6e1c4)),
    green: Some(Color::from_hex(0xd9d762)),
    cyan: Some(Color::from_hex(0xefac32)),
    blue: Some(Color::from_hex(0xefac32)),
    purple: Some(Color::from_hex(0xef5d32)),
    magenta: Some(Color::from_hex(0xef5d32)),
};