chromata 1.0.0

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

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

/// Tokyo City Terminal Dark
///
/// Author: Michaël Ball
/// Variant: Dark
/// Contrast: High
/// Source: base16 (tinted-theming/schemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("Tokyo City Terminal Dark"),
    author: Cow::Borrowed("Michaël Ball"),
    variant: Variant::Dark,
    contrast: Contrast::High,
    bg: Color::from_hex(0x171d23),
    fg: Color::from_hex(0xd8e2ec),
    cursor: Some(Color::from_hex(0xd8e2ec)),
    selection: Some(Color::from_hex(0x28323a)),
    line_highlight: Some(Color::from_hex(0x1d252c)),
    gutter: Some(Color::from_hex(0x526270)),
    statusbar_bg: Some(Color::from_hex(0x1d252c)),
    statusbar_fg: Some(Color::from_hex(0xb7c5d3)),
    comment: Some(Color::from_hex(0x526270)),
    keyword: Some(Color::from_hex(0xb62d65)),
    string: Some(Color::from_hex(0x8bd49c)),
    function: Some(Color::from_hex(0x539afc)),
    variable: Some(Color::from_hex(0xd95468)),
    r#type: Some(Color::from_hex(0xebbf83)),
    constant: Some(Color::from_hex(0xff9e64)),
    operator: Some(Color::from_hex(0xd8e2ec)),
    tag: Some(Color::from_hex(0xd95468)),
    error: Some(Color::from_hex(0xd95468)),
    warning: Some(Color::from_hex(0xebbf83)),
    info: Some(Color::from_hex(0x539afc)),
    success: Some(Color::from_hex(0x8bd49c)),
    red: Some(Color::from_hex(0xd95468)),
    orange: Some(Color::from_hex(0xff9e64)),
    yellow: Some(Color::from_hex(0xebbf83)),
    green: Some(Color::from_hex(0x8bd49c)),
    cyan: Some(Color::from_hex(0x70e1e8)),
    blue: Some(Color::from_hex(0x539afc)),
    purple: Some(Color::from_hex(0xb62d65)),
    magenta: Some(Color::from_hex(0xdd9d82)),
};