chromata 1.0.0

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

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

/// Cupertino
///
/// Author: Defman21
/// Variant: Light
/// Contrast: High
/// Source: base16 (tinted-theming/schemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("Cupertino"),
    author: Cow::Borrowed("Defman21"),
    variant: Variant::Light,
    contrast: Contrast::High,
    bg: Color::from_hex(0xffffff),
    fg: Color::from_hex(0x404040),
    cursor: Some(Color::from_hex(0x404040)),
    selection: Some(Color::from_hex(0xc0c0c0)),
    line_highlight: Some(Color::from_hex(0xc0c0c0)),
    gutter: Some(Color::from_hex(0x808080)),
    statusbar_bg: Some(Color::from_hex(0xc0c0c0)),
    statusbar_fg: Some(Color::from_hex(0x808080)),
    comment: Some(Color::from_hex(0x808080)),
    keyword: Some(Color::from_hex(0xa90d91)),
    string: Some(Color::from_hex(0x007400)),
    function: Some(Color::from_hex(0x0000ff)),
    variable: Some(Color::from_hex(0xc41a15)),
    r#type: Some(Color::from_hex(0x826b28)),
    constant: Some(Color::from_hex(0xeb8500)),
    operator: Some(Color::from_hex(0x404040)),
    tag: Some(Color::from_hex(0xc41a15)),
    error: Some(Color::from_hex(0xc41a15)),
    warning: Some(Color::from_hex(0x826b28)),
    info: Some(Color::from_hex(0x0000ff)),
    success: Some(Color::from_hex(0x007400)),
    red: Some(Color::from_hex(0xc41a15)),
    orange: Some(Color::from_hex(0xeb8500)),
    yellow: Some(Color::from_hex(0x826b28)),
    green: Some(Color::from_hex(0x007400)),
    cyan: Some(Color::from_hex(0x318495)),
    blue: Some(Color::from_hex(0x0000ff)),
    purple: Some(Color::from_hex(0xa90d91)),
    magenta: Some(Color::from_hex(0x826b28)),
};