use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Tokyo Night Storm"),
author: Cow::Borrowed("Michaël Ball"),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x24283b),
fg: Color::from_hex(0xa9b1d6),
cursor: Some(Color::from_hex(0xa9b1d6)),
selection: Some(Color::from_hex(0x343a52)),
line_highlight: Some(Color::from_hex(0x16161e)),
gutter: Some(Color::from_hex(0x444b6a)),
statusbar_bg: Some(Color::from_hex(0x16161e)),
statusbar_fg: Some(Color::from_hex(0x787c99)),
comment: Some(Color::from_hex(0x444b6a)),
keyword: Some(Color::from_hex(0xbb9af7)),
string: Some(Color::from_hex(0x9ece6a)),
function: Some(Color::from_hex(0x2ac3de)),
variable: Some(Color::from_hex(0xc0caf5)),
r#type: Some(Color::from_hex(0x0db9d7)),
constant: Some(Color::from_hex(0xa9b1d6)),
operator: Some(Color::from_hex(0xa9b1d6)),
tag: Some(Color::from_hex(0xc0caf5)),
error: Some(Color::from_hex(0xc0caf5)),
warning: Some(Color::from_hex(0x0db9d7)),
info: Some(Color::from_hex(0x2ac3de)),
success: Some(Color::from_hex(0x9ece6a)),
red: Some(Color::from_hex(0xc0caf5)),
orange: Some(Color::from_hex(0xa9b1d6)),
yellow: Some(Color::from_hex(0x0db9d7)),
green: Some(Color::from_hex(0x9ece6a)),
cyan: Some(Color::from_hex(0xb4f9f8)),
blue: Some(Color::from_hex(0x2ac3de)),
purple: Some(Color::from_hex(0xbb9af7)),
magenta: Some(Color::from_hex(0xf7768e)),
};