chromata 1.0.0

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

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

/// dirtysea
///
/// Author: Kahlil (Kal) Hodgson
/// Variant: Light
/// Contrast: High
/// Source: base16 (tinted-theming/schemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("dirtysea"),
    author: Cow::Borrowed("Kahlil (Kal) Hodgson"),
    variant: Variant::Light,
    contrast: Contrast::High,
    bg: Color::from_hex(0xe0e0e0),
    fg: Color::from_hex(0x000000),
    cursor: Some(Color::from_hex(0x000000)),
    selection: Some(Color::from_hex(0xd0d0d0)),
    line_highlight: Some(Color::from_hex(0xd0dad0)),
    gutter: Some(Color::from_hex(0x707070)),
    statusbar_bg: Some(Color::from_hex(0xd0dad0)),
    statusbar_fg: Some(Color::from_hex(0x202020)),
    comment: Some(Color::from_hex(0x707070)),
    keyword: Some(Color::from_hex(0x000090)),
    string: Some(Color::from_hex(0x730073)),
    function: Some(Color::from_hex(0x007300)),
    variable: Some(Color::from_hex(0x840000)),
    r#type: Some(Color::from_hex(0x755b00)),
    constant: Some(Color::from_hex(0x006565)),
    operator: Some(Color::from_hex(0x000000)),
    tag: Some(Color::from_hex(0x840000)),
    error: Some(Color::from_hex(0x840000)),
    warning: Some(Color::from_hex(0x755b00)),
    info: Some(Color::from_hex(0x007300)),
    success: Some(Color::from_hex(0x730073)),
    red: Some(Color::from_hex(0x840000)),
    orange: Some(Color::from_hex(0x006565)),
    yellow: Some(Color::from_hex(0x755b00)),
    green: Some(Color::from_hex(0x730073)),
    cyan: Some(Color::from_hex(0x755b00)),
    blue: Some(Color::from_hex(0x007300)),
    purple: Some(Color::from_hex(0x000090)),
    magenta: Some(Color::from_hex(0x755b00)),
};