use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Brush Trees"),
author: Cow::Borrowed("Abraham White <abelincoln.white@gmail.com>"),
variant: Variant::Light,
contrast: Contrast::Low,
bg: Color::from_hex(0xe3efef),
fg: Color::from_hex(0x6d828e),
cursor: Some(Color::from_hex(0x6d828e)),
selection: Some(Color::from_hex(0xb0c5c8)),
line_highlight: Some(Color::from_hex(0xc9dbdc)),
gutter: Some(Color::from_hex(0x98afb5)),
statusbar_bg: Some(Color::from_hex(0xc9dbdc)),
statusbar_fg: Some(Color::from_hex(0x8299a1)),
comment: Some(Color::from_hex(0x98afb5)),
keyword: Some(Color::from_hex(0xb386b2)),
string: Some(Color::from_hex(0x87b386)),
function: Some(Color::from_hex(0x868cb3)),
variable: Some(Color::from_hex(0xb38686)),
r#type: Some(Color::from_hex(0xaab386)),
constant: Some(Color::from_hex(0xd8bba2)),
operator: Some(Color::from_hex(0x6d828e)),
tag: Some(Color::from_hex(0xb38686)),
error: Some(Color::from_hex(0xb38686)),
warning: Some(Color::from_hex(0xaab386)),
info: Some(Color::from_hex(0x868cb3)),
success: Some(Color::from_hex(0x87b386)),
red: Some(Color::from_hex(0xb38686)),
orange: Some(Color::from_hex(0xd8bba2)),
yellow: Some(Color::from_hex(0xaab386)),
green: Some(Color::from_hex(0x87b386)),
cyan: Some(Color::from_hex(0x86b3b3)),
blue: Some(Color::from_hex(0x868cb3)),
purple: Some(Color::from_hex(0xb386b2)),
magenta: Some(Color::from_hex(0xb39f9f)),
};