chromata 1.0.0

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

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

/// Icy Dark
///
/// Author: icyphox (https://icyphox.ga)
/// Variant: Dark
/// Contrast: Low
/// Source: base16 (tinted-theming/schemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("Icy Dark"),
    author: Cow::Borrowed("icyphox (https://icyphox.ga)"),
    variant: Variant::Dark,
    contrast: Contrast::Low,
    bg: Color::from_hex(0x021012),
    fg: Color::from_hex(0x095b67),
    cursor: Some(Color::from_hex(0x095b67)),
    selection: Some(Color::from_hex(0x041f23)),
    line_highlight: Some(Color::from_hex(0x031619)),
    gutter: Some(Color::from_hex(0x052e34)),
    statusbar_bg: Some(Color::from_hex(0x031619)),
    statusbar_fg: Some(Color::from_hex(0x064048)),
    comment: Some(Color::from_hex(0x052e34)),
    keyword: Some(Color::from_hex(0x00acc1)),
    string: Some(Color::from_hex(0x4dd0e1)),
    function: Some(Color::from_hex(0x00bcd4)),
    variable: Some(Color::from_hex(0x16c1d9)),
    r#type: Some(Color::from_hex(0x80deea)),
    constant: Some(Color::from_hex(0xb3ebf2)),
    operator: Some(Color::from_hex(0x095b67)),
    tag: Some(Color::from_hex(0x16c1d9)),
    error: Some(Color::from_hex(0x16c1d9)),
    warning: Some(Color::from_hex(0x80deea)),
    info: Some(Color::from_hex(0x00bcd4)),
    success: Some(Color::from_hex(0x4dd0e1)),
    red: Some(Color::from_hex(0x16c1d9)),
    orange: Some(Color::from_hex(0xb3ebf2)),
    yellow: Some(Color::from_hex(0x80deea)),
    green: Some(Color::from_hex(0x4dd0e1)),
    cyan: Some(Color::from_hex(0x26c6da)),
    blue: Some(Color::from_hex(0x00bcd4)),
    purple: Some(Color::from_hex(0x00acc1)),
    magenta: Some(Color::from_hex(0x0097a7)),
};