chromata 1.0.0

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

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

/// Silk Dark
///
/// Author: Gabriel Fontes (https://github.com/Misterio77)
/// Variant: Dark
/// Contrast: Normal
/// Source: base16 (tinted-theming/schemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("Silk Dark"),
    author: Cow::Borrowed("Gabriel Fontes (https://github.com/Misterio77)"),
    variant: Variant::Dark,
    contrast: Contrast::Normal,
    bg: Color::from_hex(0x0e3c46),
    fg: Color::from_hex(0xc7dbdd),
    cursor: Some(Color::from_hex(0xc7dbdd)),
    selection: Some(Color::from_hex(0x2a5054)),
    line_highlight: Some(Color::from_hex(0x1d494e)),
    gutter: Some(Color::from_hex(0x587073)),
    statusbar_bg: Some(Color::from_hex(0x1d494e)),
    statusbar_fg: Some(Color::from_hex(0x9dc8cd)),
    comment: Some(Color::from_hex(0x587073)),
    keyword: Some(Color::from_hex(0x756b8a)),
    string: Some(Color::from_hex(0x73d8ad)),
    function: Some(Color::from_hex(0x46bddd)),
    variable: Some(Color::from_hex(0xfb6953)),
    r#type: Some(Color::from_hex(0xfce380)),
    constant: Some(Color::from_hex(0xfcab74)),
    operator: Some(Color::from_hex(0xc7dbdd)),
    tag: Some(Color::from_hex(0xfb6953)),
    error: Some(Color::from_hex(0xfb6953)),
    warning: Some(Color::from_hex(0xfce380)),
    info: Some(Color::from_hex(0x46bddd)),
    success: Some(Color::from_hex(0x73d8ad)),
    red: Some(Color::from_hex(0xfb6953)),
    orange: Some(Color::from_hex(0xfcab74)),
    yellow: Some(Color::from_hex(0xfce380)),
    green: Some(Color::from_hex(0x73d8ad)),
    cyan: Some(Color::from_hex(0x3fb2b9)),
    blue: Some(Color::from_hex(0x46bddd)),
    purple: Some(Color::from_hex(0x756b8a)),
    magenta: Some(Color::from_hex(0x9b647b)),
};