chromata 1.0.0

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

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

/// Sandcastle
///
/// Author: George Essig (https://github.com/gessig)
/// Variant: Dark
/// Contrast: Normal
/// Source: base16 (tinted-theming/schemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("Sandcastle"),
    author: Cow::Borrowed("George Essig (https://github.com/gessig)"),
    variant: Variant::Dark,
    contrast: Contrast::Normal,
    bg: Color::from_hex(0x282c34),
    fg: Color::from_hex(0xa89984),
    cursor: Some(Color::from_hex(0xa89984)),
    selection: Some(Color::from_hex(0x3e4451)),
    line_highlight: Some(Color::from_hex(0x2c323b)),
    gutter: Some(Color::from_hex(0x665c54)),
    statusbar_bg: Some(Color::from_hex(0x2c323b)),
    statusbar_fg: Some(Color::from_hex(0x928374)),
    comment: Some(Color::from_hex(0x665c54)),
    keyword: Some(Color::from_hex(0xd75f5f)),
    string: Some(Color::from_hex(0x528b8b)),
    function: Some(Color::from_hex(0x83a598)),
    variable: Some(Color::from_hex(0x83a598)),
    r#type: Some(Color::from_hex(0xa07e3b)),
    constant: Some(Color::from_hex(0xa07e3b)),
    operator: Some(Color::from_hex(0xa89984)),
    tag: Some(Color::from_hex(0x83a598)),
    error: Some(Color::from_hex(0x83a598)),
    warning: Some(Color::from_hex(0xa07e3b)),
    info: Some(Color::from_hex(0x83a598)),
    success: Some(Color::from_hex(0x528b8b)),
    red: Some(Color::from_hex(0x83a598)),
    orange: Some(Color::from_hex(0xa07e3b)),
    yellow: Some(Color::from_hex(0xa07e3b)),
    green: Some(Color::from_hex(0x528b8b)),
    cyan: Some(Color::from_hex(0x83a598)),
    blue: Some(Color::from_hex(0x83a598)),
    purple: Some(Color::from_hex(0xd75f5f)),
    magenta: Some(Color::from_hex(0xa87322)),
};