chromata 1.0.0

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

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

/// Solarized Dark
///
/// Author: Ethan Schoonover (modified by aramisgithub)
/// Variant: Dark
/// Contrast: Normal
/// Source: base16 (tinted-theming/schemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("Solarized Dark"),
    author: Cow::Borrowed("Ethan Schoonover (modified by aramisgithub)"),
    variant: Variant::Dark,
    contrast: Contrast::Normal,
    bg: Color::from_hex(0x002b36),
    fg: Color::from_hex(0x93a1a1),
    cursor: Some(Color::from_hex(0x93a1a1)),
    selection: Some(Color::from_hex(0x586e75)),
    line_highlight: Some(Color::from_hex(0x073642)),
    gutter: Some(Color::from_hex(0x657b83)),
    statusbar_bg: Some(Color::from_hex(0x073642)),
    statusbar_fg: Some(Color::from_hex(0x839496)),
    comment: Some(Color::from_hex(0x657b83)),
    keyword: Some(Color::from_hex(0x6c71c4)),
    string: Some(Color::from_hex(0x859900)),
    function: Some(Color::from_hex(0x268bd2)),
    variable: Some(Color::from_hex(0xdc322f)),
    r#type: Some(Color::from_hex(0xb58900)),
    constant: Some(Color::from_hex(0xcb4b16)),
    operator: Some(Color::from_hex(0x93a1a1)),
    tag: Some(Color::from_hex(0xdc322f)),
    error: Some(Color::from_hex(0xdc322f)),
    warning: Some(Color::from_hex(0xb58900)),
    info: Some(Color::from_hex(0x268bd2)),
    success: Some(Color::from_hex(0x859900)),
    red: Some(Color::from_hex(0xdc322f)),
    orange: Some(Color::from_hex(0xcb4b16)),
    yellow: Some(Color::from_hex(0xb58900)),
    green: Some(Color::from_hex(0x859900)),
    cyan: Some(Color::from_hex(0x2aa198)),
    blue: Some(Color::from_hex(0x268bd2)),
    purple: Some(Color::from_hex(0x6c71c4)),
    magenta: Some(Color::from_hex(0xd33682)),
};