chromata 1.0.0

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

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

/// solarized8_light_flat
///
/// Variant: Light
/// Contrast: Low
/// Source: vim (vim-colorschemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("solarized8_light_flat"),
    author: Cow::Borrowed(""),
    variant: Variant::Light,
    contrast: Contrast::Low,
    bg: Color::from_hex(0xfdf6e3),
    fg: Color::from_hex(0x657b83),
    cursor: Some(Color::from_hex(0xcb4b16)),
    selection: Some(Color::from_hex(0xfdf6e3)),
    line_highlight: Some(Color::from_hex(0xfdf6e3)),
    gutter: Some(Color::from_hex(0x93a1a1)),
    statusbar_bg: Some(Color::from_hex(0x073642)),
    statusbar_fg: Some(Color::from_hex(0xeee8d5)),
    comment: Some(Color::from_hex(0x93a1a1)),
    keyword: Some(Color::from_hex(0x719e07)),
    string: None,
    function: None,
    variable: Some(Color::from_hex(0x268bd2)),
    r#type: Some(Color::from_hex(0xb58900)),
    constant: Some(Color::from_hex(0x2aa198)),
    operator: None,
    tag: None,
    error: Some(Color::from_hex(0xdc322f)),
    warning: Some(Color::from_hex(0xcb4b16)),
    info: None,
    success: None,
    red: Some(Color::from_hex(0xdc322f)),
    orange: None,
    yellow: Some(Color::from_hex(0xcb4b16)),
    green: Some(Color::from_hex(0x719e07)),
    cyan: Some(Color::from_hex(0xb58900)),
    blue: None,
    purple: Some(Color::from_hex(0x719e07)),
    magenta: Some(Color::from_hex(0xcb4b16)),
};