chromata 1.0.0

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

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

/// wwdc16
///
/// Variant: Dark
/// Contrast: High
/// Source: vim (vim-colorschemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("wwdc16"),
    author: Cow::Borrowed(""),
    variant: Variant::Dark,
    contrast: Contrast::High,
    bg: Color::from_hex(0x292c36),
    fg: Color::from_hex(0xffffff),
    cursor: Some(Color::from_hex(0x4670d8)),
    selection: Some(Color::from_hex(0xffffff)),
    line_highlight: Some(Color::from_hex(0x333344)),
    gutter: Some(Color::from_hex(0x666666)),
    statusbar_bg: Some(Color::from_hex(0xffffff)),
    statusbar_fg: Some(Color::from_hex(0x64878f)),
    comment: Some(Color::from_hex(0x999999)),
    keyword: Some(Color::from_hex(0x64878f)),
    string: Some(Color::from_hex(0x95c76f)),
    function: Some(Color::from_hex(0x52bd58)),
    variable: Some(Color::from_hex(0x00aba5)),
    r#type: Some(Color::from_hex(0x8485ce)),
    constant: Some(Color::from_hex(0xd28e5d)),
    operator: Some(Color::from_hex(0x00aba5)),
    tag: None,
    error: Some(Color::from_hex(0xdc3c3c)),
    warning: Some(Color::from_hex(0xdc3c3c)),
    info: None,
    success: None,
    red: Some(Color::from_hex(0xdc3c3c)),
    orange: None,
    yellow: Some(Color::from_hex(0xdc3c3c)),
    green: Some(Color::from_hex(0x95c76f)),
    cyan: Some(Color::from_hex(0x8485ce)),
    blue: Some(Color::from_hex(0x52bd58)),
    purple: Some(Color::from_hex(0x64878f)),
    magenta: Some(Color::from_hex(0xb73999)),
};