chromata 1.0.0

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

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

/// Google Light
///
/// Author: Seth Wright (http://sethawright.com)
/// Variant: Light
/// Contrast: High
/// Source: base16 (tinted-theming/schemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("Google Light"),
    author: Cow::Borrowed("Seth Wright (http://sethawright.com)"),
    variant: Variant::Light,
    contrast: Contrast::High,
    bg: Color::from_hex(0xffffff),
    fg: Color::from_hex(0x373b41),
    cursor: Some(Color::from_hex(0x373b41)),
    selection: Some(Color::from_hex(0xc5c8c6)),
    line_highlight: Some(Color::from_hex(0xe0e0e0)),
    gutter: Some(Color::from_hex(0xb4b7b4)),
    statusbar_bg: Some(Color::from_hex(0xe0e0e0)),
    statusbar_fg: Some(Color::from_hex(0x969896)),
    comment: Some(Color::from_hex(0xb4b7b4)),
    keyword: Some(Color::from_hex(0xa36ac7)),
    string: Some(Color::from_hex(0x198844)),
    function: Some(Color::from_hex(0x3971ed)),
    variable: Some(Color::from_hex(0xcc342b)),
    r#type: Some(Color::from_hex(0xfba922)),
    constant: Some(Color::from_hex(0xf96a38)),
    operator: Some(Color::from_hex(0x373b41)),
    tag: Some(Color::from_hex(0xcc342b)),
    error: Some(Color::from_hex(0xcc342b)),
    warning: Some(Color::from_hex(0xfba922)),
    info: Some(Color::from_hex(0x3971ed)),
    success: Some(Color::from_hex(0x198844)),
    red: Some(Color::from_hex(0xcc342b)),
    orange: Some(Color::from_hex(0xf96a38)),
    yellow: Some(Color::from_hex(0xfba922)),
    green: Some(Color::from_hex(0x198844)),
    cyan: Some(Color::from_hex(0x3971ed)),
    blue: Some(Color::from_hex(0x3971ed)),
    purple: Some(Color::from_hex(0xa36ac7)),
    magenta: Some(Color::from_hex(0x3971ed)),
};