chromata 1.0.0

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

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

/// seagull
///
/// Variant: Light
/// Contrast: Normal
/// Source: vim (vim-colorschemes)
pub const THEME: Theme = Theme {
    name: Cow::Borrowed("seagull"),
    author: Cow::Borrowed(""),
    variant: Variant::Light,
    contrast: Contrast::Normal,
    bg: Color::from_hex(0xffffff),
    fg: Color::from_hex(0x6d767d),
    cursor: Some(Color::from_hex(0x808487)),
    selection: Some(Color::from_hex(0xffffff)),
    line_highlight: Some(Color::from_hex(0xe6eaed)),
    gutter: Some(Color::from_hex(0x808487)),
    statusbar_bg: Some(Color::from_hex(0xffffff)),
    statusbar_fg: Some(Color::from_hex(0x808487)),
    comment: Some(Color::from_hex(0x808487)),
    keyword: Some(Color::from_hex(0x11ab00)),
    string: Some(Color::from_hex(0x00a5ab)),
    function: Some(Color::from_hex(0x0099ff)),
    variable: Some(Color::from_hex(0x0099ff)),
    r#type: Some(Color::from_hex(0xbf8c00)),
    constant: Some(Color::from_hex(0x00a5ab)),
    operator: Some(Color::from_hex(0x11ab00)),
    tag: Some(Color::from_hex(0xff4053)),
    error: Some(Color::from_hex(0xff4053)),
    warning: Some(Color::from_hex(0xff4053)),
    info: None,
    success: None,
    red: Some(Color::from_hex(0xff4053)),
    orange: None,
    yellow: Some(Color::from_hex(0xff4053)),
    green: Some(Color::from_hex(0x00a5ab)),
    cyan: Some(Color::from_hex(0xbf8c00)),
    blue: Some(Color::from_hex(0x0099ff)),
    purple: Some(Color::from_hex(0x11ab00)),
    magenta: Some(Color::from_hex(0xff6200)),
};