chromata 1.0.0

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

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

/// London Tube
///
/// Author: Jan T. Sott
/// Variant: Dark
/// Contrast: High
/// Source: base16 (tinted-theming/schemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("London Tube"),
    author: Cow::Borrowed("Jan T. Sott"),
    variant: Variant::Dark,
    contrast: Contrast::High,
    bg: Color::from_hex(0x231f20),
    fg: Color::from_hex(0xd9d8d8),
    cursor: Some(Color::from_hex(0xd9d8d8)),
    selection: Some(Color::from_hex(0x5a5758)),
    line_highlight: Some(Color::from_hex(0x1c3f95)),
    gutter: Some(Color::from_hex(0x737171)),
    statusbar_bg: Some(Color::from_hex(0x1c3f95)),
    statusbar_fg: Some(Color::from_hex(0x959ca1)),
    comment: Some(Color::from_hex(0x737171)),
    keyword: Some(Color::from_hex(0x98005d)),
    string: Some(Color::from_hex(0x00853e)),
    function: Some(Color::from_hex(0x009ddc)),
    variable: Some(Color::from_hex(0xee2e24)),
    r#type: Some(Color::from_hex(0xffd204)),
    constant: Some(Color::from_hex(0xf386a1)),
    operator: Some(Color::from_hex(0xd9d8d8)),
    tag: Some(Color::from_hex(0xee2e24)),
    error: Some(Color::from_hex(0xee2e24)),
    warning: Some(Color::from_hex(0xffd204)),
    info: Some(Color::from_hex(0x009ddc)),
    success: Some(Color::from_hex(0x00853e)),
    red: Some(Color::from_hex(0xee2e24)),
    orange: Some(Color::from_hex(0xf386a1)),
    yellow: Some(Color::from_hex(0xffd204)),
    green: Some(Color::from_hex(0x00853e)),
    cyan: Some(Color::from_hex(0x85cebc)),
    blue: Some(Color::from_hex(0x009ddc)),
    purple: Some(Color::from_hex(0x98005d)),
    magenta: Some(Color::from_hex(0xb06110)),
};