use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("bayQua"),
author: Cow::Borrowed(""),
variant: Variant::Light,
contrast: Contrast::High,
bg: Color::from_hex(0xe8ebf0),
fg: Color::from_hex(0x003255),
cursor: Some(Color::from_hex(0xcadaca)),
selection: Some(Color::from_hex(0x33dfef)),
line_highlight: None,
gutter: None,
statusbar_bg: Some(Color::from_hex(0x20b5fd)),
statusbar_fg: Some(Color::from_hex(0x0a150d)),
comment: Some(Color::from_hex(0xdaddb8)),
keyword: Some(Color::from_hex(0xda302a)),
string: None,
function: Some(Color::from_hex(0xd06d50)),
variable: Some(Color::from_hex(0x856075)),
r#type: Some(Color::from_hex(0x307aca)),
constant: Some(Color::from_hex(0x3a40aa)),
operator: Some(Color::from_hex(0xe0b045)),
tag: None,
error: Some(Color::from_hex(0xc0c0c0)),
warning: Some(Color::from_hex(0x800000)),
info: None,
success: None,
red: Some(Color::from_hex(0xc0c0c0)),
orange: None,
yellow: Some(Color::from_hex(0x800000)),
green: None,
cyan: Some(Color::from_hex(0x307aca)),
blue: Some(Color::from_hex(0xd06d50)),
purple: Some(Color::from_hex(0xda302a)),
magenta: Some(Color::from_hex(0x9570b5)),
};