chromata 1.0.0

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

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

/// wwdc17
///
/// Variant: Light
/// Contrast: Normal
/// Source: vim (vim-colorschemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("wwdc17"),
    author: Cow::Borrowed(""),
    variant: Variant::Light,
    contrast: Contrast::Normal,
    bg: Color::from_hex(0xf8f8f8),
    fg: Color::from_hex(0x656567),
    cursor: None,
    selection: Some(Color::from_hex(0xf8f8f8)),
    line_highlight: Some(Color::from_hex(0xf0f0f0)),
    gutter: Some(Color::from_hex(0x888888)),
    statusbar_bg: Some(Color::from_hex(0x656567)),
    statusbar_fg: Some(Color::from_hex(0xffffff)),
    comment: Some(Color::from_hex(0x888888)),
    keyword: Some(Color::from_hex(0x1faed0)),
    string: Some(Color::from_hex(0xe4753e)),
    function: Some(Color::from_hex(0x00a995)),
    variable: Some(Color::from_hex(0x3a5d6f)),
    r#type: Some(Color::from_hex(0x8c61a6)),
    constant: Some(Color::from_hex(0x00a995)),
    operator: Some(Color::from_hex(0x1faed0)),
    tag: None,
    error: Some(Color::from_hex(0xe8503f)),
    warning: Some(Color::from_hex(0xe8503f)),
    info: None,
    success: None,
    red: Some(Color::from_hex(0xe8503f)),
    orange: None,
    yellow: Some(Color::from_hex(0xe8503f)),
    green: Some(Color::from_hex(0xe4753e)),
    cyan: Some(Color::from_hex(0x8c61a6)),
    blue: Some(Color::from_hex(0x00a995)),
    purple: Some(Color::from_hex(0x1faed0)),
    magenta: Some(Color::from_hex(0xe8503f)),
};