chromata 1.0.0

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

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

/// selenized-black
///
/// Author: Jan Warchol (https://github.com/jan-warchol/selenized) / adapted to base16 by ali
/// Variant: Dark
/// Contrast: Normal
/// Source: base16 (tinted-theming/schemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("selenized-black"),
    author: Cow::Borrowed(
        "Jan Warchol (https://github.com/jan-warchol/selenized) / adapted to base16 by ali",
    ),
    variant: Variant::Dark,
    contrast: Contrast::Normal,
    bg: Color::from_hex(0x181818),
    fg: Color::from_hex(0xb9b9b9),
    cursor: Some(Color::from_hex(0xb9b9b9)),
    selection: Some(Color::from_hex(0x3b3b3b)),
    line_highlight: Some(Color::from_hex(0x252525)),
    gutter: Some(Color::from_hex(0x777777)),
    statusbar_bg: Some(Color::from_hex(0x252525)),
    statusbar_fg: Some(Color::from_hex(0x777777)),
    comment: Some(Color::from_hex(0x777777)),
    keyword: Some(Color::from_hex(0xa580e2)),
    string: Some(Color::from_hex(0x70b433)),
    function: Some(Color::from_hex(0x368aeb)),
    variable: Some(Color::from_hex(0xed4a46)),
    r#type: Some(Color::from_hex(0xdbb32d)),
    constant: Some(Color::from_hex(0xe67f43)),
    operator: Some(Color::from_hex(0xb9b9b9)),
    tag: Some(Color::from_hex(0xed4a46)),
    error: Some(Color::from_hex(0xed4a46)),
    warning: Some(Color::from_hex(0xdbb32d)),
    info: Some(Color::from_hex(0x368aeb)),
    success: Some(Color::from_hex(0x70b433)),
    red: Some(Color::from_hex(0xed4a46)),
    orange: Some(Color::from_hex(0xe67f43)),
    yellow: Some(Color::from_hex(0xdbb32d)),
    green: Some(Color::from_hex(0x70b433)),
    cyan: Some(Color::from_hex(0x3fc5b7)),
    blue: Some(Color::from_hex(0x368aeb)),
    purple: Some(Color::from_hex(0xa580e2)),
    magenta: Some(Color::from_hex(0xeb6eb7)),
};