use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Sagelight"),
author: Cow::Borrowed("Carter Veldhuizen"),
variant: Variant::Light,
contrast: Contrast::High,
bg: Color::from_hex(0xf8f8f8),
fg: Color::from_hex(0x383838),
cursor: Some(Color::from_hex(0x383838)),
selection: Some(Color::from_hex(0xd8d8d8)),
line_highlight: Some(Color::from_hex(0xe8e8e8)),
gutter: Some(Color::from_hex(0xb8b8b8)),
statusbar_bg: Some(Color::from_hex(0xe8e8e8)),
statusbar_fg: Some(Color::from_hex(0x585858)),
comment: Some(Color::from_hex(0xb8b8b8)),
keyword: Some(Color::from_hex(0xc8a0d2)),
string: Some(Color::from_hex(0xa0d2c8)),
function: Some(Color::from_hex(0xa0a7d2)),
variable: Some(Color::from_hex(0xfa8480)),
r#type: Some(Color::from_hex(0xffdc61)),
constant: Some(Color::from_hex(0xffaa61)),
operator: Some(Color::from_hex(0x383838)),
tag: Some(Color::from_hex(0xfa8480)),
error: Some(Color::from_hex(0xfa8480)),
warning: Some(Color::from_hex(0xffdc61)),
info: Some(Color::from_hex(0xa0a7d2)),
success: Some(Color::from_hex(0xa0d2c8)),
red: Some(Color::from_hex(0xfa8480)),
orange: Some(Color::from_hex(0xffaa61)),
yellow: Some(Color::from_hex(0xffdc61)),
green: Some(Color::from_hex(0xa0d2c8)),
cyan: Some(Color::from_hex(0xa2d6f5)),
blue: Some(Color::from_hex(0xa0a7d2)),
purple: Some(Color::from_hex(0xc8a0d2)),
magenta: Some(Color::from_hex(0xd2b2a0)),
};