chromata 1.0.0

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

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

/// Jabuti
///
/// Author: https://github.com/notusknot
/// Variant: Dark
/// Contrast: Normal
/// Source: base16 (tinted-theming/schemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("Jabuti"),
    author: Cow::Borrowed("https://github.com/notusknot"),
    variant: Variant::Dark,
    contrast: Contrast::Normal,
    bg: Color::from_hex(0x292a37),
    fg: Color::from_hex(0xc0cbe3),
    cursor: Some(Color::from_hex(0xc0cbe3)),
    selection: Some(Color::from_hex(0x3c3e51)),
    line_highlight: Some(Color::from_hex(0x343545)),
    gutter: Some(Color::from_hex(0x45475d)),
    statusbar_bg: Some(Color::from_hex(0x343545)),
    statusbar_fg: Some(Color::from_hex(0x50526b)),
    comment: Some(Color::from_hex(0x45475d)),
    keyword: Some(Color::from_hex(0xbe95ff)),
    string: Some(Color::from_hex(0x3fdaa4)),
    function: Some(Color::from_hex(0x3fc6de)),
    variable: Some(Color::from_hex(0xec6a88)),
    r#type: Some(Color::from_hex(0xe1c697)),
    constant: Some(Color::from_hex(0xefb993)),
    operator: Some(Color::from_hex(0xc0cbe3)),
    tag: Some(Color::from_hex(0xec6a88)),
    error: Some(Color::from_hex(0xec6a88)),
    warning: Some(Color::from_hex(0xe1c697)),
    info: Some(Color::from_hex(0x3fc6de)),
    success: Some(Color::from_hex(0x3fdaa4)),
    red: Some(Color::from_hex(0xec6a88)),
    orange: Some(Color::from_hex(0xefb993)),
    yellow: Some(Color::from_hex(0xe1c697)),
    green: Some(Color::from_hex(0x3fdaa4)),
    cyan: Some(Color::from_hex(0xff7eb6)),
    blue: Some(Color::from_hex(0x3fc6de)),
    purple: Some(Color::from_hex(0xbe95ff)),
    magenta: Some(Color::from_hex(0x8b8da9)),
};