chromata 1.0.0

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

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

/// Penumbra Dark
///
/// Author: Zachary Weiss (https://github.com/zacharyweiss)
/// Variant: Dark
/// Contrast: Normal
/// Source: base16 (tinted-theming/schemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("Penumbra Dark"),
    author: Cow::Borrowed("Zachary Weiss (https://github.com/zacharyweiss)"),
    variant: Variant::Dark,
    contrast: Contrast::Normal,
    bg: Color::from_hex(0x24272b),
    fg: Color::from_hex(0xbebebe),
    cursor: Some(Color::from_hex(0xbebebe)),
    selection: Some(Color::from_hex(0x3e4044)),
    line_highlight: Some(Color::from_hex(0x303338)),
    gutter: Some(Color::from_hex(0x636363)),
    statusbar_bg: Some(Color::from_hex(0x303338)),
    statusbar_fg: Some(Color::from_hex(0x8f8f8f)),
    comment: Some(Color::from_hex(0x636363)),
    keyword: Some(Color::from_hex(0x9481cc)),
    string: Some(Color::from_hex(0x47a477)),
    function: Some(Color::from_hex(0x5794d0)),
    variable: Some(Color::from_hex(0xca736c)),
    r#type: Some(Color::from_hex(0x8d9741)),
    constant: Some(Color::from_hex(0xba823a)),
    operator: Some(Color::from_hex(0xbebebe)),
    tag: Some(Color::from_hex(0xca736c)),
    error: Some(Color::from_hex(0xca736c)),
    warning: Some(Color::from_hex(0x8d9741)),
    info: Some(Color::from_hex(0x5794d0)),
    success: Some(Color::from_hex(0x47a477)),
    red: Some(Color::from_hex(0xca736c)),
    orange: Some(Color::from_hex(0xba823a)),
    yellow: Some(Color::from_hex(0x8d9741)),
    green: Some(Color::from_hex(0x47a477)),
    cyan: Some(Color::from_hex(0x00a2af)),
    blue: Some(Color::from_hex(0x5794d0)),
    purple: Some(Color::from_hex(0x9481cc)),
    magenta: Some(Color::from_hex(0xbc73a4)),
};