chromata 1.0.0

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

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

/// standardized-dark
///
/// Author: ali (https://github.com/ali-githb/base16-standardized-scheme)
/// Variant: Dark
/// Contrast: Normal
/// Source: base16 (tinted-theming/schemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("standardized-dark"),
    author: Cow::Borrowed("ali (https://github.com/ali-githb/base16-standardized-scheme)"),
    variant: Variant::Dark,
    contrast: Contrast::Normal,
    bg: Color::from_hex(0x222222),
    fg: Color::from_hex(0xc0c0c0),
    cursor: Some(Color::from_hex(0xc0c0c0)),
    selection: Some(Color::from_hex(0x555555)),
    line_highlight: Some(Color::from_hex(0x303030)),
    gutter: Some(Color::from_hex(0x898989)),
    statusbar_bg: Some(Color::from_hex(0x303030)),
    statusbar_fg: Some(Color::from_hex(0x898989)),
    comment: Some(Color::from_hex(0x898989)),
    keyword: Some(Color::from_hex(0xb46ee0)),
    string: Some(Color::from_hex(0x5db129)),
    function: Some(Color::from_hex(0x00a3f2)),
    variable: Some(Color::from_hex(0xe15d67)),
    r#type: Some(Color::from_hex(0xe1b31a)),
    constant: Some(Color::from_hex(0xfc804e)),
    operator: Some(Color::from_hex(0xc0c0c0)),
    tag: Some(Color::from_hex(0xe15d67)),
    error: Some(Color::from_hex(0xe15d67)),
    warning: Some(Color::from_hex(0xe1b31a)),
    info: Some(Color::from_hex(0x00a3f2)),
    success: Some(Color::from_hex(0x5db129)),
    red: Some(Color::from_hex(0xe15d67)),
    orange: Some(Color::from_hex(0xfc804e)),
    yellow: Some(Color::from_hex(0xe1b31a)),
    green: Some(Color::from_hex(0x5db129)),
    cyan: Some(Color::from_hex(0x21c992)),
    blue: Some(Color::from_hex(0x00a3f2)),
    purple: Some(Color::from_hex(0xb46ee0)),
    magenta: Some(Color::from_hex(0xb87d28)),
};