chromata 1.0.0

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

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

/// fairyfloss
///
/// Variant: Dark
/// Contrast: Normal
/// Source: vim (vim-colorschemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("fairyfloss"),
    author: Cow::Borrowed(""),
    variant: Variant::Dark,
    contrast: Contrast::Normal,
    bg: Color::from_hex(0x5a5475),
    fg: Color::from_hex(0xf8f8f2),
    cursor: None,
    selection: Some(Color::from_hex(0x8077a8)),
    line_highlight: Some(Color::from_hex(0x716799)),
    gutter: Some(Color::from_hex(0xa8a4b1)),
    statusbar_bg: Some(Color::from_hex(0x373348)),
    statusbar_fg: Some(Color::from_hex(0xa8a4b1)),
    comment: Some(Color::from_hex(0xe6c000)),
    keyword: Some(Color::from_hex(0xffb8d1)),
    string: Some(Color::from_hex(0xffea00)),
    function: Some(Color::from_hex(0xfff352)),
    variable: Some(Color::from_hex(0xc2ffdf)),
    r#type: Some(Color::from_hex(0xfff352)),
    constant: Some(Color::from_hex(0xc5a3ff)),
    operator: Some(Color::from_hex(0xffb8d1)),
    tag: Some(Color::from_hex(0xffb8d1)),
    error: Some(Color::from_hex(0xf8f8f0)),
    warning: Some(Color::from_hex(0xf8f8f0)),
    info: None,
    success: None,
    red: Some(Color::from_hex(0xf8f8f0)),
    orange: None,
    yellow: Some(Color::from_hex(0xf8f8f0)),
    green: Some(Color::from_hex(0xffea00)),
    cyan: Some(Color::from_hex(0xfff352)),
    blue: Some(Color::from_hex(0xfff352)),
    purple: Some(Color::from_hex(0xffb8d1)),
    magenta: Some(Color::from_hex(0xffb8d1)),
};