chromata 1.0.0

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

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

/// beauty256
///
/// Variant: Light
/// Contrast: High
/// Source: vim (vim-colorschemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("beauty256"),
    author: Cow::Borrowed(""),
    variant: Variant::Light,
    contrast: Contrast::High,
    bg: Color::from_hex(0xffffff),
    fg: Color::from_hex(0x000000),
    cursor: Some(Color::from_hex(0x000000)),
    selection: Some(Color::from_hex(0x829db9)),
    line_highlight: None,
    gutter: Some(Color::from_hex(0x828c95)),
    statusbar_bg: Some(Color::from_hex(0x220088)),
    statusbar_fg: Some(Color::from_hex(0xddddff)),
    comment: Some(Color::from_hex(0x9999cc)),
    keyword: Some(Color::from_hex(0xbb88bb)),
    string: Some(Color::from_hex(0x008000)),
    function: None,
    variable: Some(Color::from_hex(0x875f00)),
    r#type: Some(Color::from_hex(0x5f5fd7)),
    constant: None,
    operator: None,
    tag: None,
    error: Some(Color::from_hex(0xffffff)),
    warning: None,
    info: None,
    success: None,
    red: Some(Color::from_hex(0xffffff)),
    orange: None,
    yellow: Some(Color::from_hex(0x5f87ff)),
    green: Some(Color::from_hex(0x008000)),
    cyan: Some(Color::from_hex(0x5f5fd7)),
    blue: None,
    purple: Some(Color::from_hex(0xbb88bb)),
    magenta: Some(Color::from_hex(0x0000ff)),
};