use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("swamplight"),
author: Cow::Borrowed(""),
variant: Variant::Light,
contrast: Contrast::High,
bg: Color::from_hex(0xedeccc),
fg: Color::from_hex(0x000000),
cursor: Some(Color::from_hex(0x65876b)),
selection: Some(Color::from_hex(0xaab472)),
line_highlight: Some(Color::from_hex(0xedeccc)),
gutter: Some(Color::from_hex(0xedeccc)),
statusbar_bg: Some(Color::from_hex(0x65876b)),
statusbar_fg: Some(Color::from_hex(0xedeccc)),
comment: Some(Color::from_hex(0x778066)),
keyword: Some(Color::from_hex(0x000000)),
string: Some(Color::from_hex(0x733900)),
function: Some(Color::from_hex(0x0e8c77)),
variable: Some(Color::from_hex(0x620e8c)),
r#type: Some(Color::from_hex(0x8c230e)),
constant: Some(Color::from_hex(0xcc8014)),
operator: Some(Color::from_hex(0x0e588c)),
tag: None,
error: Some(Color::from_hex(0x8c230e)),
warning: Some(Color::from_hex(0xcc8014)),
info: None,
success: None,
red: Some(Color::from_hex(0x8c230e)),
orange: None,
yellow: Some(Color::from_hex(0xcc8014)),
green: Some(Color::from_hex(0x733900)),
cyan: Some(Color::from_hex(0x8c230e)),
blue: Some(Color::from_hex(0x0e8c77)),
purple: Some(Color::from_hex(0x000000)),
magenta: Some(Color::from_hex(0x0e588c)),
};