chromata 1.0.0

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

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

/// fine_blue
///
/// Variant: Light
/// Contrast: High
/// Source: vim (vim-colorschemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("fine_blue"),
    author: Cow::Borrowed(""),
    variant: Variant::Light,
    contrast: Contrast::High,
    bg: Color::from_hex(0xf8f8f8),
    fg: Color::from_hex(0x303040),
    cursor: Some(Color::from_hex(0x00e0ff)),
    selection: Some(Color::from_hex(0xdddde8)),
    line_highlight: None,
    gutter: Some(Color::from_hex(0x8080a0)),
    statusbar_bg: Some(Color::from_hex(0x303040)),
    statusbar_fg: Some(Color::from_hex(0xf8f8f8)),
    comment: Some(Color::from_hex(0xff00c0)),
    keyword: Some(Color::from_hex(0x008858)),
    string: None,
    function: None,
    variable: Some(Color::from_hex(0xc800ff)),
    r#type: Some(Color::from_hex(0x7040ff)),
    constant: Some(Color::from_hex(0x2020ff)),
    operator: None,
    tag: None,
    error: Some(Color::from_hex(0xff0070)),
    warning: Some(Color::from_hex(0xff0070)),
    info: None,
    success: None,
    red: Some(Color::from_hex(0xff0070)),
    orange: None,
    yellow: Some(Color::from_hex(0xff0070)),
    green: Some(Color::from_hex(0x2020ff)),
    cyan: Some(Color::from_hex(0x7040ff)),
    blue: None,
    purple: Some(Color::from_hex(0x008858)),
    magenta: Some(Color::from_hex(0x0070e6)),
};