chromata 1.0.0

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

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

/// selenized-light
///
/// 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-light"),
    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(0xfbf3db),
    fg: Color::from_hex(0x53676d),
    cursor: Some(Color::from_hex(0x53676d)),
    selection: Some(Color::from_hex(0xd5cdb6)),
    line_highlight: Some(Color::from_hex(0xece3cc)),
    gutter: Some(Color::from_hex(0x909995)),
    statusbar_bg: Some(Color::from_hex(0xece3cc)),
    statusbar_fg: Some(Color::from_hex(0x909995)),
    comment: Some(Color::from_hex(0x909995)),
    keyword: Some(Color::from_hex(0x825dc0)),
    string: Some(Color::from_hex(0x428b00)),
    function: Some(Color::from_hex(0x006dce)),
    variable: Some(Color::from_hex(0xcc1729)),
    r#type: Some(Color::from_hex(0xa78300)),
    constant: Some(Color::from_hex(0xbc5819)),
    operator: Some(Color::from_hex(0x53676d)),
    tag: Some(Color::from_hex(0xcc1729)),
    error: Some(Color::from_hex(0xcc1729)),
    warning: Some(Color::from_hex(0xa78300)),
    info: Some(Color::from_hex(0x006dce)),
    success: Some(Color::from_hex(0x428b00)),
    red: Some(Color::from_hex(0xcc1729)),
    orange: Some(Color::from_hex(0xbc5819)),
    yellow: Some(Color::from_hex(0xa78300)),
    green: Some(Color::from_hex(0x428b00)),
    cyan: Some(Color::from_hex(0x00978a)),
    blue: Some(Color::from_hex(0x006dce)),
    purple: Some(Color::from_hex(0x825dc0)),
    magenta: Some(Color::from_hex(0xc44392)),
};