chromata 1.0.0

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

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

/// Summerfruit Light
///
/// Author: Christopher Corley (http://christop.club/)
/// Variant: Light
/// Contrast: High
/// Source: base16 (tinted-theming/schemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("Summerfruit Light"),
    author: Cow::Borrowed("Christopher Corley (http://christop.club/)"),
    variant: Variant::Light,
    contrast: Contrast::High,
    bg: Color::from_hex(0xffffff),
    fg: Color::from_hex(0x101010),
    cursor: Some(Color::from_hex(0x101010)),
    selection: Some(Color::from_hex(0xd0d0d0)),
    line_highlight: Some(Color::from_hex(0xe0e0e0)),
    gutter: Some(Color::from_hex(0xb0b0b0)),
    statusbar_bg: Some(Color::from_hex(0xe0e0e0)),
    statusbar_fg: Some(Color::from_hex(0x000000)),
    comment: Some(Color::from_hex(0xb0b0b0)),
    keyword: Some(Color::from_hex(0xad00a1)),
    string: Some(Color::from_hex(0x00c918)),
    function: Some(Color::from_hex(0x3777e6)),
    variable: Some(Color::from_hex(0xff0086)),
    r#type: Some(Color::from_hex(0xaba800)),
    constant: Some(Color::from_hex(0xfd8900)),
    operator: Some(Color::from_hex(0x101010)),
    tag: Some(Color::from_hex(0xff0086)),
    error: Some(Color::from_hex(0xff0086)),
    warning: Some(Color::from_hex(0xaba800)),
    info: Some(Color::from_hex(0x3777e6)),
    success: Some(Color::from_hex(0x00c918)),
    red: Some(Color::from_hex(0xff0086)),
    orange: Some(Color::from_hex(0xfd8900)),
    yellow: Some(Color::from_hex(0xaba800)),
    green: Some(Color::from_hex(0x00c918)),
    cyan: Some(Color::from_hex(0x1faaaa)),
    blue: Some(Color::from_hex(0x3777e6)),
    purple: Some(Color::from_hex(0xad00a1)),
    magenta: Some(Color::from_hex(0xcc6633)),
};