chromata 1.0.0

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

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

/// Equilibrium Gray Light
///
/// Author: Carlo Abelli
/// Variant: Light
/// Contrast: Normal
/// Source: base16 (tinted-theming/schemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("Equilibrium Gray Light"),
    author: Cow::Borrowed("Carlo Abelli"),
    variant: Variant::Light,
    contrast: Contrast::Normal,
    bg: Color::from_hex(0xf1f1f1),
    fg: Color::from_hex(0x474747),
    cursor: Some(Color::from_hex(0x474747)),
    selection: Some(Color::from_hex(0xd4d4d4)),
    line_highlight: Some(Color::from_hex(0xe2e2e2)),
    gutter: Some(Color::from_hex(0x777777)),
    statusbar_bg: Some(Color::from_hex(0xe2e2e2)),
    statusbar_fg: Some(Color::from_hex(0x5e5e5e)),
    comment: Some(Color::from_hex(0x777777)),
    keyword: Some(Color::from_hex(0x4e66b6)),
    string: Some(Color::from_hex(0x637200)),
    function: Some(Color::from_hex(0x0073b5)),
    variable: Some(Color::from_hex(0xd02023)),
    r#type: Some(Color::from_hex(0x9d6f00)),
    constant: Some(Color::from_hex(0xbf3e05)),
    operator: Some(Color::from_hex(0x474747)),
    tag: Some(Color::from_hex(0xd02023)),
    error: Some(Color::from_hex(0xd02023)),
    warning: Some(Color::from_hex(0x9d6f00)),
    info: Some(Color::from_hex(0x0073b5)),
    success: Some(Color::from_hex(0x637200)),
    red: Some(Color::from_hex(0xd02023)),
    orange: Some(Color::from_hex(0xbf3e05)),
    yellow: Some(Color::from_hex(0x9d6f00)),
    green: Some(Color::from_hex(0x637200)),
    cyan: Some(Color::from_hex(0x007a72)),
    blue: Some(Color::from_hex(0x0073b5)),
    purple: Some(Color::from_hex(0x4e66b6)),
    magenta: Some(Color::from_hex(0xc42775)),
};