use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("beachcomber"),
author: Cow::Borrowed(""),
variant: Variant::Light,
contrast: Contrast::High,
bg: Color::from_hex(0xf1efd8),
fg: Color::from_hex(0x192b4e),
cursor: Some(Color::from_hex(0xa8cdcd)),
selection: Some(Color::from_hex(0xd4fefe)),
line_highlight: None,
gutter: Some(Color::from_hex(0x2f2f2f)),
statusbar_bg: Some(Color::from_hex(0x7bd3d4)),
statusbar_fg: Some(Color::from_hex(0x2f2f2f)),
comment: Some(Color::from_hex(0x6c5b5b)),
keyword: Some(Color::from_hex(0x41898a)),
string: None,
function: None,
variable: Some(Color::from_hex(0x395420)),
r#type: Some(Color::from_hex(0x204546)),
constant: Some(Color::from_hex(0x6a3f70)),
operator: None,
tag: None,
error: Some(Color::from_hex(0xffffff)),
warning: None,
info: None,
success: None,
red: Some(Color::from_hex(0xffffff)),
orange: None,
yellow: None,
green: Some(Color::from_hex(0x07af07)),
cyan: Some(Color::from_hex(0x204546)),
blue: None,
purple: Some(Color::from_hex(0x41898a)),
magenta: Some(Color::from_hex(0x984d4d)),
};