chromata 1.0.0

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

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

/// selenized-white
///
/// Author: Jan Warchol (https://github.com/jan-warchol/selenized) / adapted to base16 by ali
/// Variant: Light
/// Contrast: Normal
/// Source: base16 (tinted-theming/schemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("selenized-white"),
    author: Cow::Borrowed(
        "Jan Warchol (https://github.com/jan-warchol/selenized) / adapted to base16 by ali",
    ),
    variant: Variant::Light,
    contrast: Contrast::Normal,
    bg: Color::from_hex(0xffffff),
    fg: Color::from_hex(0x474747),
    cursor: Some(Color::from_hex(0x474747)),
    selection: Some(Color::from_hex(0xcdcdcd)),
    line_highlight: Some(Color::from_hex(0xebebeb)),
    gutter: Some(Color::from_hex(0x878787)),
    statusbar_bg: Some(Color::from_hex(0xebebeb)),
    statusbar_fg: Some(Color::from_hex(0x878787)),
    comment: Some(Color::from_hex(0x878787)),
    keyword: Some(Color::from_hex(0x6b40c3)),
    string: Some(Color::from_hex(0x008400)),
    function: Some(Color::from_hex(0x0054cf)),
    variable: Some(Color::from_hex(0xbf0000)),
    r#type: Some(Color::from_hex(0xaf8500)),
    constant: Some(Color::from_hex(0xba3700)),
    operator: Some(Color::from_hex(0x474747)),
    tag: Some(Color::from_hex(0xbf0000)),
    error: Some(Color::from_hex(0xbf0000)),
    warning: Some(Color::from_hex(0xaf8500)),
    info: Some(Color::from_hex(0x0054cf)),
    success: Some(Color::from_hex(0x008400)),
    red: Some(Color::from_hex(0xbf0000)),
    orange: Some(Color::from_hex(0xba3700)),
    yellow: Some(Color::from_hex(0xaf8500)),
    green: Some(Color::from_hex(0x008400)),
    cyan: Some(Color::from_hex(0x009a8a)),
    blue: Some(Color::from_hex(0x0054cf)),
    purple: Some(Color::from_hex(0x6b40c3)),
    magenta: Some(Color::from_hex(0xdd0f9d)),
};