use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("southwest-fog"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x26292e),
fg: Color::from_hex(0xacb9c7),
cursor: Some(Color::from_hex(0x73b87f)),
selection: Some(Color::from_hex(0x94b3b3)),
line_highlight: Some(Color::from_hex(0x30333a)),
gutter: Some(Color::from_hex(0x3d424a)),
statusbar_bg: Some(Color::from_hex(0x1a1d20)),
statusbar_fg: Some(Color::from_hex(0xb0d3bb)),
comment: Some(Color::from_hex(0x5a6c60)),
keyword: Some(Color::from_hex(0xccc0b1)),
string: Some(Color::from_hex(0x9a7bb2)),
function: Some(Color::from_hex(0xcccbb1)),
variable: Some(Color::from_hex(0xb89e93)),
r#type: Some(Color::from_hex(0xcbb0b2)),
constant: Some(Color::from_hex(0xb1c7ad)),
operator: None,
tag: None,
error: None,
warning: Some(Color::from_hex(0xbb6d6d)),
info: None,
success: None,
red: None,
orange: None,
yellow: Some(Color::from_hex(0xbb6d6d)),
green: Some(Color::from_hex(0x9a7bb2)),
cyan: Some(Color::from_hex(0xcbb0b2)),
blue: Some(Color::from_hex(0xcccbb1)),
purple: Some(Color::from_hex(0xccc0b1)),
magenta: Some(Color::from_hex(0xbbacc7)),
};