chromata 1.0.0

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

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

/// adventurous
///
/// Variant: Dark
/// Contrast: High
/// Source: vim (vim-colorschemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("adventurous"),
    author: Cow::Borrowed(""),
    variant: Variant::Dark,
    contrast: Contrast::High,
    bg: Color::from_hex(0x191b1f),
    fg: Color::from_hex(0xf8f8f2),
    cursor: Some(Color::from_hex(0xf8f8f2)),
    selection: Some(Color::from_hex(0x404449)),
    line_highlight: Some(Color::from_hex(0x404449)),
    gutter: Some(Color::from_hex(0x404449)),
    statusbar_bg: Some(Color::from_hex(0x404449)),
    statusbar_fg: Some(Color::from_hex(0xf8f8f2)),
    comment: Some(Color::from_hex(0x277bd3)),
    keyword: Some(Color::from_hex(0xde347a)),
    string: Some(Color::from_hex(0xffc620)),
    function: Some(Color::from_hex(0x4bae16)),
    variable: Some(Color::from_hex(0x7fd6fa)),
    r#type: None,
    constant: None,
    operator: Some(Color::from_hex(0xde347a)),
    tag: Some(Color::from_hex(0xde347a)),
    error: Some(Color::from_hex(0xf8f8f2)),
    warning: Some(Color::from_hex(0xf8f8f2)),
    info: None,
    success: None,
    red: Some(Color::from_hex(0xf8f8f2)),
    orange: None,
    yellow: Some(Color::from_hex(0xf8f8f2)),
    green: Some(Color::from_hex(0xffc620)),
    cyan: None,
    blue: Some(Color::from_hex(0x4bae16)),
    purple: Some(Color::from_hex(0xde347a)),
    magenta: Some(Color::from_hex(0xde347a)),
};