chromata 1.0.0

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

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

/// Oxocarbon Light
///
/// Author: shaunsingh/IBM, Tinted Theming (https://github.com/tinted-theming)
/// Variant: Light
/// Contrast: Normal
/// Source: base16 (tinted-theming/schemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("Oxocarbon Light"),
    author: Cow::Borrowed("shaunsingh/IBM, Tinted Theming (https://github.com/tinted-theming)"),
    variant: Variant::Light,
    contrast: Contrast::Normal,
    bg: Color::from_hex(0xf2f4f8),
    fg: Color::from_hex(0x525f70),
    cursor: Some(Color::from_hex(0x525f70)),
    selection: Some(Color::from_hex(0xbec6cf)),
    line_highlight: Some(Color::from_hex(0xdde1e6)),
    gutter: Some(Color::from_hex(0xa1acba)),
    statusbar_bg: Some(Color::from_hex(0xdde1e6)),
    statusbar_fg: Some(Color::from_hex(0x68788d)),
    comment: Some(Color::from_hex(0xa1acba)),
    keyword: Some(Color::from_hex(0xbe95ff)),
    string: Some(Color::from_hex(0x42be65)),
    function: Some(Color::from_hex(0x0f62fe)),
    variable: Some(Color::from_hex(0xff7eb6)),
    r#type: Some(Color::from_hex(0xff6f00)),
    constant: Some(Color::from_hex(0xee5396)),
    operator: Some(Color::from_hex(0x525f70)),
    tag: Some(Color::from_hex(0xff7eb6)),
    error: Some(Color::from_hex(0xff7eb6)),
    warning: Some(Color::from_hex(0xff6f00)),
    info: Some(Color::from_hex(0x0f62fe)),
    success: Some(Color::from_hex(0x42be65)),
    red: Some(Color::from_hex(0xff7eb6)),
    orange: Some(Color::from_hex(0xee5396)),
    yellow: Some(Color::from_hex(0xff6f00)),
    green: Some(Color::from_hex(0x42be65)),
    cyan: Some(Color::from_hex(0x673ab7)),
    blue: Some(Color::from_hex(0x0f62fe)),
    purple: Some(Color::from_hex(0xbe95ff)),
    magenta: Some(Color::from_hex(0x803800)),
};