use crate::{Base16Palette, Base24Palette, Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Flat"),
author: Cow::Borrowed("FredHappyface (https://github.com/fredHappyface)"),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x082845),
fg: Color::from_hex(0x8c939a),
cursor: Some(Color::from_hex(0x8c939a)),
selection: Some(Color::from_hex(0x2e2e45)),
line_highlight: Some(Color::from_hex(0x1d2845)),
gutter: Some(Color::from_hex(0x444e5b)),
statusbar_bg: Some(Color::from_hex(0x1d2845)),
statusbar_fg: Some(Color::from_hex(0x68717b)),
comment: Some(Color::from_hex(0x444e5b)),
keyword: Some(Color::from_hex(0x781aa0)),
string: Some(Color::from_hex(0x2d9440)),
function: Some(Color::from_hex(0x3167ac)),
variable: Some(Color::from_hex(0xa82320)),
r#type: Some(Color::from_hex(0x3c7dd2)),
constant: Some(Color::from_hex(0xe58d11)),
operator: Some(Color::from_hex(0x8c939a)),
tag: Some(Color::from_hex(0xa82320)),
error: Some(Color::from_hex(0xa82320)),
warning: Some(Color::from_hex(0x3c7dd2)),
info: Some(Color::from_hex(0x3167ac)),
success: Some(Color::from_hex(0x2d9440)),
red: Some(Color::from_hex(0xd4312e)),
orange: Some(Color::from_hex(0xe58d11)),
yellow: Some(Color::from_hex(0xe5be0c)),
green: Some(Color::from_hex(0x32a548)),
cyan: Some(Color::from_hex(0x2c9370)),
blue: Some(Color::from_hex(0x35b387)),
purple: Some(Color::from_hex(0x3c7dd2)),
magenta: Some(Color::from_hex(0x8230a7)),
};
pub const PALETTE: Base24Palette = Base24Palette {
base: Base16Palette {
base00: Color::from_hex(0x082845),
base01: Color::from_hex(0x1d2845),
base02: Color::from_hex(0x2e2e45),
base03: Color::from_hex(0x444e5b),
base04: Color::from_hex(0x68717b),
base05: Color::from_hex(0x8c939a),
base06: Color::from_hex(0xb0b6ba),
base07: Color::from_hex(0xe7eced),
base08: Color::from_hex(0xa82320),
base09: Color::from_hex(0xe58d11),
base0a: Color::from_hex(0x3c7dd2),
base0b: Color::from_hex(0x2d9440),
base0c: Color::from_hex(0x2c9370),
base0d: Color::from_hex(0x3167ac),
base0e: Color::from_hex(0x781aa0),
base0f: Color::from_hex(0x541110),
},
base10: Color::from_hex(0x002240),
base11: Color::from_hex(0x001629),
base12: Color::from_hex(0xd4312e),
base13: Color::from_hex(0xe5be0c),
base14: Color::from_hex(0x32a548),
base15: Color::from_hex(0x35b387),
base16: Color::from_hex(0x3c7dd2),
base17: Color::from_hex(0x8230a7),
};