chromata 1.0.0

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

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

/// taqua
///
/// Variant: Light
/// Contrast: High
/// Source: vim (vim-colorschemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("taqua"),
    author: Cow::Borrowed(""),
    variant: Variant::Light,
    contrast: Contrast::High,
    bg: Color::from_hex(0xffffff),
    fg: Color::from_hex(0x303030),
    cursor: Some(Color::from_hex(0x000000)),
    selection: Some(Color::from_hex(0x1679f9)),
    line_highlight: None,
    gutter: Some(Color::from_hex(0x00a0ff)),
    statusbar_bg: Some(Color::from_hex(0x0e8ed3)),
    statusbar_fg: Some(Color::from_hex(0xffffff)),
    comment: Some(Color::from_hex(0x0e8ed3)),
    keyword: Some(Color::from_hex(0xf36ce5)),
    string: None,
    function: None,
    variable: Some(Color::from_hex(0x000000)),
    r#type: Some(Color::from_hex(0x0971f9)),
    constant: Some(Color::from_hex(0x0384f6)),
    operator: None,
    tag: None,
    error: Some(Color::from_hex(0xffffff)),
    warning: Some(Color::from_hex(0x008000)),
    info: None,
    success: None,
    red: Some(Color::from_hex(0xffffff)),
    orange: None,
    yellow: Some(Color::from_hex(0x008000)),
    green: Some(Color::from_hex(0x008000)),
    cyan: Some(Color::from_hex(0x0971f9)),
    blue: None,
    purple: Some(Color::from_hex(0xf36ce5)),
    magenta: Some(Color::from_hex(0x0bbf20)),
};