use crate::{Base16Palette, Base24Palette, Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("One Dark"),
author: Cow::Borrowed("FredHappyface (https://github.com/fredHappyface)"),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x282c34),
fg: Color::from_hex(0xabb2bf),
cursor: Some(Color::from_hex(0xabb2bf)),
selection: Some(Color::from_hex(0x4f5666)),
line_highlight: Some(Color::from_hex(0x3f4451)),
gutter: Some(Color::from_hex(0x545862)),
statusbar_bg: Some(Color::from_hex(0x3f4451)),
statusbar_fg: Some(Color::from_hex(0x9196a1)),
comment: Some(Color::from_hex(0x545862)),
keyword: Some(Color::from_hex(0xc162de)),
string: Some(Color::from_hex(0x8cc265)),
function: Some(Color::from_hex(0x4aa5f0)),
variable: Some(Color::from_hex(0xe05561)),
r#type: Some(Color::from_hex(0xe6b965)),
constant: Some(Color::from_hex(0xd18f52)),
operator: Some(Color::from_hex(0xabb2bf)),
tag: Some(Color::from_hex(0xe05561)),
error: Some(Color::from_hex(0xe05561)),
warning: Some(Color::from_hex(0xe6b965)),
info: Some(Color::from_hex(0x4aa5f0)),
success: Some(Color::from_hex(0x8cc265)),
red: Some(Color::from_hex(0xff616e)),
orange: Some(Color::from_hex(0xd18f52)),
yellow: Some(Color::from_hex(0xf0a45d)),
green: Some(Color::from_hex(0xa5e075)),
cyan: Some(Color::from_hex(0x42b3c2)),
blue: Some(Color::from_hex(0x4cd1e0)),
purple: Some(Color::from_hex(0x4dc4ff)),
magenta: Some(Color::from_hex(0xde73ff)),
};
pub const PALETTE: Base24Palette = Base24Palette {
base: Base16Palette {
base00: Color::from_hex(0x282c34),
base01: Color::from_hex(0x3f4451),
base02: Color::from_hex(0x4f5666),
base03: Color::from_hex(0x545862),
base04: Color::from_hex(0x9196a1),
base05: Color::from_hex(0xabb2bf),
base06: Color::from_hex(0xe6e6e6),
base07: Color::from_hex(0xffffff),
base08: Color::from_hex(0xe05561),
base09: Color::from_hex(0xd18f52),
base0a: Color::from_hex(0xe6b965),
base0b: Color::from_hex(0x8cc265),
base0c: Color::from_hex(0x42b3c2),
base0d: Color::from_hex(0x4aa5f0),
base0e: Color::from_hex(0xc162de),
base0f: Color::from_hex(0xbf4034),
},
base10: Color::from_hex(0x21252b),
base11: Color::from_hex(0x181a1f),
base12: Color::from_hex(0xff616e),
base13: Color::from_hex(0xf0a45d),
base14: Color::from_hex(0xa5e075),
base15: Color::from_hex(0x4cd1e0),
base16: Color::from_hex(0x4dc4ff),
base17: Color::from_hex(0xde73ff),
};