chromata 1.0.0

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

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

/// Chinoiserie Night
///
/// Author: Di Wang (https://cs.cmu.edu/~diw3)
/// Variant: Dark
/// Contrast: High
/// Source: base16 (tinted-theming/schemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("Chinoiserie Night"),
    author: Cow::Borrowed("Di Wang (https://cs.cmu.edu/~diw3)"),
    variant: Variant::Dark,
    contrast: Contrast::High,
    bg: Color::from_hex(0x1d1d1d),
    fg: Color::from_hex(0xc4cbcf),
    cursor: Some(Color::from_hex(0xc4cbcf)),
    selection: Some(Color::from_hex(0x373737)),
    line_highlight: Some(Color::from_hex(0x282828)),
    gutter: Some(Color::from_hex(0x918072)),
    statusbar_bg: Some(Color::from_hex(0x282828)),
    statusbar_fg: Some(Color::from_hex(0xbdaead)),
    comment: Some(Color::from_hex(0x918072)),
    keyword: Some(Color::from_hex(0xbe9db9)),
    string: Some(Color::from_hex(0xb2cf87)),
    function: Some(Color::from_hex(0x8fb2c9)),
    variable: Some(Color::from_hex(0xf07c82)),
    r#type: Some(Color::from_hex(0xf4ce69)),
    constant: Some(Color::from_hex(0xf4a83a)),
    operator: Some(Color::from_hex(0xc4cbcf)),
    tag: Some(Color::from_hex(0xf07c82)),
    error: Some(Color::from_hex(0xf07c82)),
    warning: Some(Color::from_hex(0xf4ce69)),
    info: Some(Color::from_hex(0x8fb2c9)),
    success: Some(Color::from_hex(0xb2cf87)),
    red: Some(Color::from_hex(0xf07c82)),
    orange: Some(Color::from_hex(0xf4a83a)),
    yellow: Some(Color::from_hex(0xf4ce69)),
    green: Some(Color::from_hex(0xb2cf87)),
    cyan: Some(Color::from_hex(0xb0d5df)),
    blue: Some(Color::from_hex(0x8fb2c9)),
    purple: Some(Color::from_hex(0xbe9db9)),
    magenta: Some(Color::from_hex(0xb89485)),
};