use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("underwater-mod"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x102235),
fg: Color::from_hex(0xe3f3fa),
cursor: Some(Color::from_hex(0x55a096)),
selection: Some(Color::from_hex(0x24557a)),
line_highlight: Some(Color::from_hex(0x18374f)),
gutter: Some(Color::from_hex(0x1c3249)),
statusbar_bg: Some(Color::from_hex(0x0a1721)),
statusbar_fg: Some(Color::from_hex(0xffec99)),
comment: Some(Color::from_hex(0x4e6f91)),
keyword: Some(Color::from_hex(0x8ac6f2)),
string: Some(Color::from_hex(0x89e14b)),
function: Some(Color::from_hex(0xaf81f4)),
variable: Some(Color::from_hex(0x889ce8)),
r#type: Some(Color::from_hex(0x5ba0eb)),
constant: Some(Color::from_hex(0xffc287)),
operator: None,
tag: None,
error: None,
warning: Some(Color::from_hex(0xc62626)),
info: None,
success: None,
red: None,
orange: None,
yellow: Some(Color::from_hex(0xc62626)),
green: Some(Color::from_hex(0x89e14b)),
cyan: Some(Color::from_hex(0x5ba0eb)),
blue: Some(Color::from_hex(0xaf81f4)),
purple: Some(Color::from_hex(0x8ac6f2)),
magenta: Some(Color::from_hex(0xef7760)),
};