use crate::{Base16Palette, Base24Palette, Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Ayu Mirage"),
author: Cow::Borrowed(
"Tinted Theming (https://github.com/tinted-theming), Ayu Theme (https://github.com/ayu-theme)",
),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x1f2430),
fg: Color::from_hex(0xcccac2),
cursor: Some(Color::from_hex(0xcccac2)),
selection: Some(Color::from_hex(0x323844)),
line_highlight: Some(Color::from_hex(0x242936)),
gutter: Some(Color::from_hex(0x4a5059)),
statusbar_bg: Some(Color::from_hex(0x242936)),
statusbar_fg: Some(Color::from_hex(0x707a8c)),
comment: Some(Color::from_hex(0x4a5059)),
keyword: Some(Color::from_hex(0xd4bfff)),
string: Some(Color::from_hex(0xd5ff80)),
function: Some(Color::from_hex(0x73d0ff)),
variable: Some(Color::from_hex(0xf28779)),
r#type: Some(Color::from_hex(0xffd173)),
constant: Some(Color::from_hex(0xffad66)),
operator: Some(Color::from_hex(0xcccac2)),
tag: Some(Color::from_hex(0xf28779)),
error: Some(Color::from_hex(0xf28779)),
warning: Some(Color::from_hex(0xffd173)),
info: Some(Color::from_hex(0x73d0ff)),
success: Some(Color::from_hex(0xd5ff80)),
red: Some(Color::from_hex(0xff6666)),
orange: Some(Color::from_hex(0xffad66)),
yellow: Some(Color::from_hex(0xffcc66)),
green: Some(Color::from_hex(0x87d963)),
cyan: Some(Color::from_hex(0x95e6cb)),
blue: Some(Color::from_hex(0x5ccfe6)),
purple: Some(Color::from_hex(0x80b0ff)),
magenta: Some(Color::from_hex(0xb692ff)),
};
pub const PALETTE: Base24Palette = Base24Palette {
base: Base16Palette {
base00: Color::from_hex(0x1f2430),
base01: Color::from_hex(0x242936),
base02: Color::from_hex(0x323844),
base03: Color::from_hex(0x4a5059),
base04: Color::from_hex(0x707a8c),
base05: Color::from_hex(0xcccac2),
base06: Color::from_hex(0xd9d7ce),
base07: Color::from_hex(0xf3f4f5),
base08: Color::from_hex(0xf28779),
base09: Color::from_hex(0xffad66),
base0a: Color::from_hex(0xffd173),
base0b: Color::from_hex(0xd5ff80),
base0c: Color::from_hex(0x95e6cb),
base0d: Color::from_hex(0x73d0ff),
base0e: Color::from_hex(0xd4bfff),
base0f: Color::from_hex(0xf27983),
},
base10: Color::from_hex(0x171b24),
base11: Color::from_hex(0x1a1f29),
base12: Color::from_hex(0xff6666),
base13: Color::from_hex(0xffcc66),
base14: Color::from_hex(0x87d963),
base15: Color::from_hex(0x5ccfe6),
base16: Color::from_hex(0x80b0ff),
base17: Color::from_hex(0xb692ff),
};