chromata 1.0.0

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

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

/// soda
///
/// Variant: Light
/// Contrast: Normal
/// Source: vim (vim-colorschemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("soda"),
    author: Cow::Borrowed(""),
    variant: Variant::Light,
    contrast: Contrast::Normal,
    bg: Color::from_hex(0xffffff),
    fg: Color::from_hex(0x555555),
    cursor: Some(Color::from_hex(0x615649)),
    selection: Some(Color::from_hex(0xc2e8ff)),
    line_highlight: Some(Color::from_hex(0xe6e6e6)),
    gutter: Some(Color::from_hex(0xaaaaaa)),
    statusbar_bg: Some(Color::from_hex(0xb5b5b5)),
    statusbar_fg: Some(Color::from_hex(0x000000)),
    comment: Some(Color::from_hex(0xadadad)),
    keyword: Some(Color::from_hex(0x61862f)),
    string: Some(Color::from_hex(0xbc670f)),
    function: Some(Color::from_hex(0x61862f)),
    variable: Some(Color::from_hex(0x222222)),
    r#type: Some(Color::from_hex(0x3a1d72)),
    constant: Some(Color::from_hex(0x7653c1)),
    operator: Some(Color::from_hex(0x626fc9)),
    tag: Some(Color::from_hex(0x2f6f9f)),
    error: None,
    warning: None,
    info: None,
    success: None,
    red: None,
    orange: None,
    yellow: Some(Color::from_hex(0x000000)),
    green: Some(Color::from_hex(0xbc670f)),
    cyan: Some(Color::from_hex(0x3a1d72)),
    blue: Some(Color::from_hex(0x61862f)),
    purple: Some(Color::from_hex(0x61862f)),
    magenta: Some(Color::from_hex(0x61862f)),
};