chromata 1.0.0

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

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

/// Everforest Dark Medium
///
/// Author: Sainnhe Park (https://github.com/sainnhe)
/// Variant: Dark
/// Contrast: Low
/// Source: base16 (tinted-theming/schemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("Everforest Dark Medium"),
    author: Cow::Borrowed("Sainnhe Park (https://github.com/sainnhe)"),
    variant: Variant::Dark,
    contrast: Contrast::Low,
    bg: Color::from_hex(0x2d353b),
    fg: Color::from_hex(0x859289),
    cursor: Some(Color::from_hex(0x859289)),
    selection: Some(Color::from_hex(0x3d484d)),
    line_highlight: Some(Color::from_hex(0x343f44)),
    gutter: Some(Color::from_hex(0x475258)),
    statusbar_bg: Some(Color::from_hex(0x343f44)),
    statusbar_fg: Some(Color::from_hex(0x7a8478)),
    comment: Some(Color::from_hex(0x475258)),
    keyword: Some(Color::from_hex(0xd699b6)),
    string: Some(Color::from_hex(0xa7c080)),
    function: Some(Color::from_hex(0x7fbbb3)),
    variable: Some(Color::from_hex(0xe67e80)),
    r#type: Some(Color::from_hex(0xdbbc7f)),
    constant: Some(Color::from_hex(0xe69875)),
    operator: Some(Color::from_hex(0x859289)),
    tag: Some(Color::from_hex(0xe67e80)),
    error: Some(Color::from_hex(0xe67e80)),
    warning: Some(Color::from_hex(0xdbbc7f)),
    info: Some(Color::from_hex(0x7fbbb3)),
    success: Some(Color::from_hex(0xa7c080)),
    red: Some(Color::from_hex(0xe67e80)),
    orange: Some(Color::from_hex(0xe69875)),
    yellow: Some(Color::from_hex(0xdbbc7f)),
    green: Some(Color::from_hex(0xa7c080)),
    cyan: Some(Color::from_hex(0x83c092)),
    blue: Some(Color::from_hex(0x7fbbb3)),
    purple: Some(Color::from_hex(0xd699b6)),
    magenta: Some(Color::from_hex(0x514045)),
};