chromata 1.0.0

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

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

/// fruity
///
/// Variant: Dark
/// Contrast: High
/// Source: vim (vim-colorschemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("fruity"),
    author: Cow::Borrowed(""),
    variant: Variant::Dark,
    contrast: Contrast::High,
    bg: Color::from_hex(0x111111),
    fg: Color::from_hex(0xffffff),
    cursor: Some(Color::from_hex(0xaaaaaa)),
    selection: None,
    line_highlight: Some(Color::from_hex(0x181818)),
    gutter: Some(Color::from_hex(0xaaaaaa)),
    statusbar_bg: Some(Color::from_hex(0x8090a0)),
    statusbar_fg: Some(Color::from_hex(0xffffff)),
    comment: Some(Color::from_hex(0x00d2ff)),
    keyword: Some(Color::from_hex(0xfb660a)),
    string: Some(Color::from_hex(0x0086d2)),
    function: Some(Color::from_hex(0xff0086)),
    variable: Some(Color::from_hex(0xff0086)),
    r#type: Some(Color::from_hex(0xcdcaa9)),
    constant: Some(Color::from_hex(0x0086d2)),
    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(0xfd8900)),
    green: Some(Color::from_hex(0x0086d2)),
    cyan: Some(Color::from_hex(0xcdcaa9)),
    blue: Some(Color::from_hex(0xff0086)),
    purple: Some(Color::from_hex(0xfb660a)),
    magenta: Some(Color::from_hex(0xff0007)),
};