chromata 1.0.0

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

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

/// Da One Sea
///
/// Author: NNB (https://github.com/NNBnh)
/// Variant: Dark
/// Contrast: High
/// Source: base16 (tinted-theming/schemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("Da One Sea"),
    author: Cow::Borrowed("NNB (https://github.com/NNBnh)"),
    variant: Variant::Dark,
    contrast: Contrast::High,
    bg: Color::from_hex(0x22273d),
    fg: Color::from_hex(0xffffff),
    cursor: Some(Color::from_hex(0xffffff)),
    selection: Some(Color::from_hex(0x525866)),
    line_highlight: Some(Color::from_hex(0x374059)),
    gutter: Some(Color::from_hex(0x878d96)),
    statusbar_bg: Some(Color::from_hex(0x374059)),
    statusbar_fg: Some(Color::from_hex(0xc8c8c8)),
    comment: Some(Color::from_hex(0x878d96)),
    keyword: Some(Color::from_hex(0xe799ff)),
    string: Some(Color::from_hex(0x98c379)),
    function: Some(Color::from_hex(0x6bb8ff)),
    variable: Some(Color::from_hex(0xfa7883)),
    r#type: Some(Color::from_hex(0xff9470)),
    constant: Some(Color::from_hex(0xffc387)),
    operator: Some(Color::from_hex(0xffffff)),
    tag: Some(Color::from_hex(0xfa7883)),
    error: Some(Color::from_hex(0xfa7883)),
    warning: Some(Color::from_hex(0xff9470)),
    info: Some(Color::from_hex(0x6bb8ff)),
    success: Some(Color::from_hex(0x98c379)),
    red: Some(Color::from_hex(0xfa7883)),
    orange: Some(Color::from_hex(0xffc387)),
    yellow: Some(Color::from_hex(0xff9470)),
    green: Some(Color::from_hex(0x98c379)),
    cyan: Some(Color::from_hex(0x8af5ff)),
    blue: Some(Color::from_hex(0x6bb8ff)),
    purple: Some(Color::from_hex(0xe799ff)),
    magenta: Some(Color::from_hex(0xb3684f)),
};