chromata 1.0.0

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

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

/// Atelier Estuary
///
/// Author: Bram de Haan (http://atelierbramdehaan.nl)
/// Variant: Dark
/// Contrast: Normal
/// Source: base16 (tinted-theming/schemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("Atelier Estuary"),
    author: Cow::Borrowed("Bram de Haan (http://atelierbramdehaan.nl)"),
    variant: Variant::Dark,
    contrast: Contrast::Normal,
    bg: Color::from_hex(0x22221b),
    fg: Color::from_hex(0x929181),
    cursor: Some(Color::from_hex(0x929181)),
    selection: Some(Color::from_hex(0x5f5e4e)),
    line_highlight: Some(Color::from_hex(0x302f27)),
    gutter: Some(Color::from_hex(0x6c6b5a)),
    statusbar_bg: Some(Color::from_hex(0x302f27)),
    statusbar_fg: Some(Color::from_hex(0x878573)),
    comment: Some(Color::from_hex(0x6c6b5a)),
    keyword: Some(Color::from_hex(0x5f9182)),
    string: Some(Color::from_hex(0x7d9726)),
    function: Some(Color::from_hex(0x36a166)),
    variable: Some(Color::from_hex(0xba6236)),
    r#type: Some(Color::from_hex(0xa5980d)),
    constant: Some(Color::from_hex(0xae7313)),
    operator: Some(Color::from_hex(0x929181)),
    tag: Some(Color::from_hex(0xba6236)),
    error: Some(Color::from_hex(0xba6236)),
    warning: Some(Color::from_hex(0xa5980d)),
    info: Some(Color::from_hex(0x36a166)),
    success: Some(Color::from_hex(0x7d9726)),
    red: Some(Color::from_hex(0xba6236)),
    orange: Some(Color::from_hex(0xae7313)),
    yellow: Some(Color::from_hex(0xa5980d)),
    green: Some(Color::from_hex(0x7d9726)),
    cyan: Some(Color::from_hex(0x5b9d48)),
    blue: Some(Color::from_hex(0x36a166)),
    purple: Some(Color::from_hex(0x5f9182)),
    magenta: Some(Color::from_hex(0x9d6c7c)),
};