chromata 1.0.0

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

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

/// Penumbra Light Contrast Plus
///
/// Author: Zachary Weiss (https://github.com/zacharyweiss)
/// Variant: Light
/// Contrast: Normal
/// Source: base16 (tinted-theming/schemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("Penumbra Light Contrast Plus"),
    author: Cow::Borrowed("Zachary Weiss (https://github.com/zacharyweiss)"),
    variant: Variant::Light,
    contrast: Contrast::Normal,
    bg: Color::from_hex(0xfffdfb),
    fg: Color::from_hex(0x636363),
    cursor: Some(Color::from_hex(0x636363)),
    selection: Some(Color::from_hex(0xf2e6d4)),
    line_highlight: Some(Color::from_hex(0xfff7ed)),
    gutter: Some(Color::from_hex(0xcecece)),
    statusbar_bg: Some(Color::from_hex(0xfff7ed)),
    statusbar_fg: Some(Color::from_hex(0x9e9e9e)),
    comment: Some(Color::from_hex(0xcecece)),
    keyword: Some(Color::from_hex(0xa48fe1)),
    string: Some(Color::from_hex(0x50b584)),
    function: Some(Color::from_hex(0x61a3e6)),
    variable: Some(Color::from_hex(0xdf7f78)),
    r#type: Some(Color::from_hex(0x9ca748)),
    constant: Some(Color::from_hex(0xce9042)),
    operator: Some(Color::from_hex(0x636363)),
    tag: Some(Color::from_hex(0xdf7f78)),
    error: Some(Color::from_hex(0xdf7f78)),
    warning: Some(Color::from_hex(0x9ca748)),
    info: Some(Color::from_hex(0x61a3e6)),
    success: Some(Color::from_hex(0x50b584)),
    red: Some(Color::from_hex(0xdf7f78)),
    orange: Some(Color::from_hex(0xce9042)),
    yellow: Some(Color::from_hex(0x9ca748)),
    green: Some(Color::from_hex(0x50b584)),
    cyan: Some(Color::from_hex(0x00b3c2)),
    blue: Some(Color::from_hex(0x61a3e6)),
    purple: Some(Color::from_hex(0xa48fe1)),
    magenta: Some(Color::from_hex(0xd080b6)),
};