chromata 1.0.0

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

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

/// Eva
///
/// Author: kjakapat (https://github.com/kjakapat)
/// Variant: Dark
/// Contrast: Low
/// Source: base16 (tinted-theming/schemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("Eva"),
    author: Cow::Borrowed("kjakapat (https://github.com/kjakapat)"),
    variant: Variant::Dark,
    contrast: Contrast::Low,
    bg: Color::from_hex(0x2a3b4d),
    fg: Color::from_hex(0x9fa2a6),
    cursor: Some(Color::from_hex(0x9fa2a6)),
    selection: Some(Color::from_hex(0x4b6988)),
    line_highlight: Some(Color::from_hex(0x3d566f)),
    gutter: Some(Color::from_hex(0x55799c)),
    statusbar_bg: Some(Color::from_hex(0x3d566f)),
    statusbar_fg: Some(Color::from_hex(0x7e90a3)),
    comment: Some(Color::from_hex(0x55799c)),
    keyword: Some(Color::from_hex(0x9c6cd3)),
    string: Some(Color::from_hex(0x66ff66)),
    function: Some(Color::from_hex(0x15f4ee)),
    variable: Some(Color::from_hex(0xc4676c)),
    r#type: Some(Color::from_hex(0xffff66)),
    constant: Some(Color::from_hex(0xff9966)),
    operator: Some(Color::from_hex(0x9fa2a6)),
    tag: Some(Color::from_hex(0xc4676c)),
    error: Some(Color::from_hex(0xc4676c)),
    warning: Some(Color::from_hex(0xffff66)),
    info: Some(Color::from_hex(0x15f4ee)),
    success: Some(Color::from_hex(0x66ff66)),
    red: Some(Color::from_hex(0xc4676c)),
    orange: Some(Color::from_hex(0xff9966)),
    yellow: Some(Color::from_hex(0xffff66)),
    green: Some(Color::from_hex(0x66ff66)),
    cyan: Some(Color::from_hex(0x4b8f77)),
    blue: Some(Color::from_hex(0x15f4ee)),
    purple: Some(Color::from_hex(0x9c6cd3)),
    magenta: Some(Color::from_hex(0xbb64a9)),
};