chromata 1.0.0

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

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

/// sorbet
///
/// Variant: Dark
/// Contrast: High
/// Source: vim (vim-colorschemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("sorbet"),
    author: Cow::Borrowed(""),
    variant: Variant::Dark,
    contrast: Contrast::High,
    bg: Color::from_hex(0x161821),
    fg: Color::from_hex(0xdadada),
    cursor: None,
    selection: Some(Color::from_hex(0x000000)),
    line_highlight: Some(Color::from_hex(0x363841)),
    gutter: Some(Color::from_hex(0x5f5f87)),
    statusbar_bg: Some(Color::from_hex(0xd7d7ff)),
    statusbar_fg: Some(Color::from_hex(0x000000)),
    comment: Some(Color::from_hex(0xaf87d7)),
    keyword: Some(Color::from_hex(0x87afd7)),
    string: Some(Color::from_hex(0xd7af5f)),
    function: Some(Color::from_hex(0x87d75f)),
    variable: Some(Color::from_hex(0x87d75f)),
    r#type: Some(Color::from_hex(0x87afd7)),
    constant: Some(Color::from_hex(0xd75f5f)),
    operator: Some(Color::from_hex(0x87afd7)),
    tag: Some(Color::from_hex(0x5fafaf)),
    error: Some(Color::from_hex(0xff5f5f)),
    warning: Some(Color::from_hex(0xdadada)),
    info: None,
    success: None,
    red: Some(Color::from_hex(0xff5f5f)),
    orange: None,
    yellow: Some(Color::from_hex(0xdadada)),
    green: Some(Color::from_hex(0xd7af5f)),
    cyan: Some(Color::from_hex(0x87afd7)),
    blue: Some(Color::from_hex(0x87d75f)),
    purple: Some(Color::from_hex(0x87afd7)),
    magenta: Some(Color::from_hex(0x87afd7)),
};