use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Circus"),
author: Cow::Borrowed(
"Stephan Boyer (https://github.com/stepchowfun) and Esther Wang (https://github.com/ewang12)",
),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x191919),
fg: Color::from_hex(0xa7a7a7),
cursor: Some(Color::from_hex(0xa7a7a7)),
selection: Some(Color::from_hex(0x303030)),
line_highlight: Some(Color::from_hex(0x202020)),
gutter: Some(Color::from_hex(0x5f5a60)),
statusbar_bg: Some(Color::from_hex(0x202020)),
statusbar_fg: Some(Color::from_hex(0x505050)),
comment: Some(Color::from_hex(0x5f5a60)),
keyword: Some(Color::from_hex(0xb888e2)),
string: Some(Color::from_hex(0x84b97c)),
function: Some(Color::from_hex(0x639ee4)),
variable: Some(Color::from_hex(0xdc657d)),
r#type: Some(Color::from_hex(0xc3ba63)),
constant: Some(Color::from_hex(0x4bb1a7)),
operator: Some(Color::from_hex(0xa7a7a7)),
tag: Some(Color::from_hex(0xdc657d)),
error: Some(Color::from_hex(0xdc657d)),
warning: Some(Color::from_hex(0xc3ba63)),
info: Some(Color::from_hex(0x639ee4)),
success: Some(Color::from_hex(0x84b97c)),
red: Some(Color::from_hex(0xdc657d)),
orange: Some(Color::from_hex(0x4bb1a7)),
yellow: Some(Color::from_hex(0xc3ba63)),
green: Some(Color::from_hex(0x84b97c)),
cyan: Some(Color::from_hex(0x4bb1a7)),
blue: Some(Color::from_hex(0x639ee4)),
purple: Some(Color::from_hex(0xb888e2)),
magenta: Some(Color::from_hex(0xb888e2)),
};