use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("whitedust"),
author: Cow::Borrowed(""),
variant: Variant::Light,
contrast: Contrast::Normal,
bg: Color::from_hex(0xc0c0c0),
fg: Color::from_hex(0x333333),
cursor: Some(Color::from_hex(0x515151)),
selection: Some(Color::from_hex(0x0e7369)),
line_highlight: None,
gutter: Some(Color::from_hex(0x808080)),
statusbar_bg: Some(Color::from_hex(0x0e7369)),
statusbar_fg: Some(Color::from_hex(0xcccccc)),
comment: Some(Color::from_hex(0x808080)),
keyword: Some(Color::from_hex(0x000000)),
string: Some(Color::from_hex(0x336c6c)),
function: Some(Color::from_hex(0x000070)),
variable: Some(Color::from_hex(0x000000)),
r#type: Some(Color::from_hex(0x000000)),
constant: Some(Color::from_hex(0x235c5c)),
operator: Some(Color::from_hex(0x000000)),
tag: Some(Color::from_hex(0x235c5c)),
error: Some(Color::from_hex(0xffffff)),
warning: Some(Color::from_hex(0x000000)),
info: None,
success: None,
red: Some(Color::from_hex(0xffffff)),
orange: None,
yellow: Some(Color::from_hex(0x000000)),
green: Some(Color::from_hex(0x336c6c)),
cyan: Some(Color::from_hex(0x000000)),
blue: Some(Color::from_hex(0x000070)),
purple: Some(Color::from_hex(0x000000)),
magenta: Some(Color::from_hex(0x003050)),
};