use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("peaksea"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x202020),
fg: Color::from_hex(0xd0d0d0),
cursor: Some(Color::from_hex(0xe7e7e7)),
selection: Some(Color::from_hex(0x606060)),
line_highlight: Some(Color::from_hex(0x666666)),
gutter: Some(Color::from_hex(0xb0b0b0)),
statusbar_bg: Some(Color::from_hex(0x272822)),
statusbar_fg: Some(Color::from_hex(0xffffff)),
comment: Some(Color::from_hex(0xd0d090)),
keyword: Some(Color::from_hex(0xc0d8f8)),
string: Some(Color::from_hex(0x80c0e0)),
function: None,
variable: Some(Color::from_hex(0xf0c0f0)),
r#type: Some(Color::from_hex(0xb0d0f0)),
constant: Some(Color::from_hex(0x80c0e0)),
operator: None,
tag: Some(Color::from_hex(0xf0c0f0)),
error: Some(Color::from_hex(0xd0d090)),
warning: Some(Color::from_hex(0xf08060)),
info: None,
success: None,
red: Some(Color::from_hex(0xd0d090)),
orange: None,
yellow: Some(Color::from_hex(0xf08060)),
green: Some(Color::from_hex(0x80c0e0)),
cyan: Some(Color::from_hex(0xb0d0f0)),
blue: None,
purple: Some(Color::from_hex(0xc0d8f8)),
magenta: Some(Color::from_hex(0x60f080)),
};