use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("cascadia"),
author: Cow::Borrowed(""),
variant: Variant::Light,
contrast: Contrast::High,
bg: Color::from_hex(0xffffff),
fg: Color::from_hex(0x000000),
cursor: Some(Color::from_hex(0x000000)),
selection: Some(Color::from_hex(0x0db906)),
line_highlight: Some(Color::from_hex(0xeeeeee)),
gutter: Some(Color::from_hex(0x505050)),
statusbar_bg: Some(Color::from_hex(0x323232)),
statusbar_fg: Some(Color::from_hex(0xffffff)),
comment: Some(Color::from_hex(0x79a97b)),
keyword: Some(Color::from_hex(0x121bc0)),
string: Some(Color::from_hex(0x085d06)),
function: None,
variable: Some(Color::from_hex(0xa9a61f)),
r#type: Some(Color::from_hex(0x121bc0)),
constant: Some(Color::from_hex(0x508040)),
operator: None,
tag: Some(Color::from_hex(0x5080b0)),
error: Some(Color::from_hex(0xffffff)),
warning: Some(Color::from_hex(0xc8c8c8)),
info: None,
success: None,
red: Some(Color::from_hex(0xffffff)),
orange: None,
yellow: Some(Color::from_hex(0xc8c8c8)),
green: Some(Color::from_hex(0x085d06)),
cyan: Some(Color::from_hex(0x121bc0)),
blue: None,
purple: Some(Color::from_hex(0x121bc0)),
magenta: Some(Color::from_hex(0x121bc0)),
};