use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Seti UI"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x151718),
fg: Color::from_hex(0xd6d6d6),
cursor: Some(Color::from_hex(0xd6d6d6)),
selection: Some(Color::from_hex(0x3b758c)),
line_highlight: Some(Color::from_hex(0x282a2b)),
gutter: Some(Color::from_hex(0x41535b)),
statusbar_bg: Some(Color::from_hex(0x282a2b)),
statusbar_fg: Some(Color::from_hex(0x43a5d5)),
comment: Some(Color::from_hex(0x41535b)),
keyword: Some(Color::from_hex(0xa074c4)),
string: Some(Color::from_hex(0x9fca56)),
function: Some(Color::from_hex(0x55b5db)),
variable: Some(Color::from_hex(0xcd3f45)),
r#type: Some(Color::from_hex(0xe6cd69)),
constant: Some(Color::from_hex(0xdb7b55)),
operator: Some(Color::from_hex(0xd6d6d6)),
tag: Some(Color::from_hex(0xcd3f45)),
error: Some(Color::from_hex(0xcd3f45)),
warning: Some(Color::from_hex(0xe6cd69)),
info: Some(Color::from_hex(0x55b5db)),
success: Some(Color::from_hex(0x9fca56)),
red: Some(Color::from_hex(0xcd3f45)),
orange: Some(Color::from_hex(0xdb7b55)),
yellow: Some(Color::from_hex(0xe6cd69)),
green: Some(Color::from_hex(0x9fca56)),
cyan: Some(Color::from_hex(0x55dbbe)),
blue: Some(Color::from_hex(0x55b5db)),
purple: Some(Color::from_hex(0xa074c4)),
magenta: Some(Color::from_hex(0x8a553f)),
};