use crate::{Base16Palette, Base24Palette, Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Tomorrow Night"),
author: Cow::Borrowed("Cody Buell (https://github.com/codybuell)"),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x1d1f21),
fg: Color::from_hex(0xc5c8c6),
cursor: Some(Color::from_hex(0xc5c8c6)),
selection: Some(Color::from_hex(0x373b41)),
line_highlight: Some(Color::from_hex(0x282a2e)),
gutter: Some(Color::from_hex(0x969896)),
statusbar_bg: Some(Color::from_hex(0x282a2e)),
statusbar_fg: Some(Color::from_hex(0xb4b7b4)),
comment: Some(Color::from_hex(0x969896)),
keyword: Some(Color::from_hex(0xb294bb)),
string: Some(Color::from_hex(0xb5bd68)),
function: Some(Color::from_hex(0x81a2be)),
variable: Some(Color::from_hex(0xcc6666)),
r#type: Some(Color::from_hex(0xf0c674)),
constant: Some(Color::from_hex(0xde935f)),
operator: Some(Color::from_hex(0xc5c8c6)),
tag: Some(Color::from_hex(0xcc6666)),
error: Some(Color::from_hex(0xcc6666)),
warning: Some(Color::from_hex(0xf0c674)),
info: Some(Color::from_hex(0x81a2be)),
success: Some(Color::from_hex(0xb5bd68)),
red: Some(Color::from_hex(0xe74c3c)),
orange: Some(Color::from_hex(0xde935f)),
yellow: Some(Color::from_hex(0xf7dc6f)),
green: Some(Color::from_hex(0xb8d4b3)),
cyan: Some(Color::from_hex(0x8abeb7)),
blue: Some(Color::from_hex(0x95d3ce)),
purple: Some(Color::from_hex(0x85c1e9)),
magenta: Some(Color::from_hex(0xd7a3ca)),
};
pub const PALETTE: Base24Palette = Base24Palette {
base: Base16Palette {
base00: Color::from_hex(0x1d1f21),
base01: Color::from_hex(0x282a2e),
base02: Color::from_hex(0x373b41),
base03: Color::from_hex(0x969896),
base04: Color::from_hex(0xb4b7b4),
base05: Color::from_hex(0xc5c8c6),
base06: Color::from_hex(0xe0e0e0),
base07: Color::from_hex(0xffffff),
base08: Color::from_hex(0xcc6666),
base09: Color::from_hex(0xde935f),
base0a: Color::from_hex(0xf0c674),
base0b: Color::from_hex(0xb5bd68),
base0c: Color::from_hex(0x8abeb7),
base0d: Color::from_hex(0x81a2be),
base0e: Color::from_hex(0xb294bb),
base0f: Color::from_hex(0xa3685a),
},
base10: Color::from_hex(0x080909),
base11: Color::from_hex(0x2d3135),
base12: Color::from_hex(0xe74c3c),
base13: Color::from_hex(0xf7dc6f),
base14: Color::from_hex(0xb8d4b3),
base15: Color::from_hex(0x95d3ce),
base16: Color::from_hex(0x85c1e9),
base17: Color::from_hex(0xd7a3ca),
};