use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("darkdot"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x00285e),
fg: Color::from_hex(0xd6ebf0),
cursor: Some(Color::from_hex(0x44ff44)),
selection: Some(Color::from_hex(0xbbbbbb)),
line_highlight: None,
gutter: Some(Color::from_hex(0xffff00)),
statusbar_bg: Some(Color::from_hex(0x00aaaa)),
statusbar_fg: Some(Color::from_hex(0xffffff)),
comment: Some(Color::from_hex(0x4444ff)),
keyword: Some(Color::from_hex(0x44ffff)),
string: None,
function: None,
variable: Some(Color::from_hex(0xffffff)),
r#type: Some(Color::from_hex(0xffffff)),
constant: Some(Color::from_hex(0x00aaaa)),
operator: None,
tag: Some(Color::from_hex(0x6666ff)),
error: Some(Color::from_hex(0xffffff)),
warning: Some(Color::from_hex(0xffff00)),
info: None,
success: None,
red: Some(Color::from_hex(0xffffff)),
orange: None,
yellow: Some(Color::from_hex(0xffff00)),
green: Some(Color::from_hex(0xffff00)),
cyan: Some(Color::from_hex(0xffffff)),
blue: None,
purple: Some(Color::from_hex(0x44ffff)),
magenta: Some(Color::from_hex(0x00aaaa)),
};