chromata 1.0.0

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

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

/// ShadeSmear Dark
///
/// Author: Kyle Giammarco (http://kyle.giammar.co)
/// Variant: Dark
/// Contrast: High
/// Source: base16 (tinted-theming/schemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("ShadeSmear Dark"),
    author: Cow::Borrowed("Kyle Giammarco (http://kyle.giammar.co)"),
    variant: Variant::Dark,
    contrast: Contrast::High,
    bg: Color::from_hex(0x232323),
    fg: Color::from_hex(0xdbdbdb),
    cursor: Some(Color::from_hex(0xdbdbdb)),
    selection: Some(Color::from_hex(0x4e4e4e)),
    line_highlight: Some(Color::from_hex(0x1c1c1c)),
    gutter: Some(Color::from_hex(0xc0c0c0)),
    statusbar_bg: Some(Color::from_hex(0x1c1c1c)),
    statusbar_fg: Some(Color::from_hex(0xe4e4e4)),
    comment: Some(Color::from_hex(0xc0c0c0)),
    keyword: Some(Color::from_hex(0xd7ab54)),
    string: Some(Color::from_hex(0x71983b)),
    function: Some(Color::from_hex(0x376388)),
    variable: Some(Color::from_hex(0xcc5450)),
    r#type: Some(Color::from_hex(0x307878)),
    constant: Some(Color::from_hex(0xa64270)),
    operator: Some(Color::from_hex(0xdbdbdb)),
    tag: Some(Color::from_hex(0xcc5450)),
    error: Some(Color::from_hex(0xcc5450)),
    warning: Some(Color::from_hex(0x307878)),
    info: Some(Color::from_hex(0x376388)),
    success: Some(Color::from_hex(0x71983b)),
    red: Some(Color::from_hex(0xcc5450)),
    orange: Some(Color::from_hex(0xa64270)),
    yellow: Some(Color::from_hex(0x307878)),
    green: Some(Color::from_hex(0x71983b)),
    cyan: Some(Color::from_hex(0xc57d42)),
    blue: Some(Color::from_hex(0x376388)),
    purple: Some(Color::from_hex(0xd7ab54)),
    magenta: Some(Color::from_hex(0x6d6d6d)),
};