chromata 1.0.0

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

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

/// Atelier Seaside
///
/// Author: Bram de Haan (http://atelierbramdehaan.nl)
/// Variant: Dark
/// Contrast: Normal
/// Source: base16 (tinted-theming/schemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("Atelier Seaside"),
    author: Cow::Borrowed("Bram de Haan (http://atelierbramdehaan.nl)"),
    variant: Variant::Dark,
    contrast: Contrast::Normal,
    bg: Color::from_hex(0x131513),
    fg: Color::from_hex(0x8ca68c),
    cursor: Some(Color::from_hex(0x8ca68c)),
    selection: Some(Color::from_hex(0x5e6e5e)),
    line_highlight: Some(Color::from_hex(0x242924)),
    gutter: Some(Color::from_hex(0x687d68)),
    statusbar_bg: Some(Color::from_hex(0x242924)),
    statusbar_fg: Some(Color::from_hex(0x809980)),
    comment: Some(Color::from_hex(0x687d68)),
    keyword: Some(Color::from_hex(0xad2bee)),
    string: Some(Color::from_hex(0x29a329)),
    function: Some(Color::from_hex(0x3d62f5)),
    variable: Some(Color::from_hex(0xe6193c)),
    r#type: Some(Color::from_hex(0x98981b)),
    constant: Some(Color::from_hex(0x87711d)),
    operator: Some(Color::from_hex(0x8ca68c)),
    tag: Some(Color::from_hex(0xe6193c)),
    error: Some(Color::from_hex(0xe6193c)),
    warning: Some(Color::from_hex(0x98981b)),
    info: Some(Color::from_hex(0x3d62f5)),
    success: Some(Color::from_hex(0x29a329)),
    red: Some(Color::from_hex(0xe6193c)),
    orange: Some(Color::from_hex(0x87711d)),
    yellow: Some(Color::from_hex(0x98981b)),
    green: Some(Color::from_hex(0x29a329)),
    cyan: Some(Color::from_hex(0x1999b3)),
    blue: Some(Color::from_hex(0x3d62f5)),
    purple: Some(Color::from_hex(0xad2bee)),
    magenta: Some(Color::from_hex(0xe619c3)),
};