use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("SAGA"),
author: Cow::Borrowed("https://github.com/SAGAtheme/SAGA"),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x05080a),
fg: Color::from_hex(0xdce2f7),
cursor: Some(Color::from_hex(0xdce2f7)),
selection: Some(Color::from_hex(0x0f181e)),
line_highlight: Some(Color::from_hex(0x0a1014)),
gutter: Some(Color::from_hex(0x141f27)),
statusbar_bg: Some(Color::from_hex(0x0a1014)),
statusbar_fg: Some(Color::from_hex(0x192630)),
comment: Some(Color::from_hex(0x141f27)),
keyword: Some(Color::from_hex(0xdcc3f9)),
string: Some(Color::from_hex(0xf7ddff)),
function: Some(Color::from_hex(0xc9fff7)),
variable: Some(Color::from_hex(0xffd4e9)),
r#type: Some(Color::from_hex(0xfbebc8)),
constant: Some(Color::from_hex(0xfbcbae)),
operator: Some(Color::from_hex(0xdce2f7)),
tag: Some(Color::from_hex(0xffd4e9)),
error: Some(Color::from_hex(0xffd4e9)),
warning: Some(Color::from_hex(0xfbebc8)),
info: Some(Color::from_hex(0xc9fff7)),
success: Some(Color::from_hex(0xf7ddff)),
red: Some(Color::from_hex(0xffd4e9)),
orange: Some(Color::from_hex(0xfbcbae)),
yellow: Some(Color::from_hex(0xfbebc8)),
green: Some(Color::from_hex(0xf7ddff)),
cyan: Some(Color::from_hex(0xc5edc1)),
blue: Some(Color::from_hex(0xc9fff7)),
purple: Some(Color::from_hex(0xdcc3f9)),
magenta: Some(Color::from_hex(0xf6dddd)),
};