use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Atelier Sulphurpool"),
author: Cow::Borrowed("Bram de Haan (http://atelierbramdehaan.nl)"),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x202746),
fg: Color::from_hex(0x979db4),
cursor: Some(Color::from_hex(0x979db4)),
selection: Some(Color::from_hex(0x5e6687)),
line_highlight: Some(Color::from_hex(0x293256)),
gutter: Some(Color::from_hex(0x6b7394)),
statusbar_bg: Some(Color::from_hex(0x293256)),
statusbar_fg: Some(Color::from_hex(0x898ea4)),
comment: Some(Color::from_hex(0x6b7394)),
keyword: Some(Color::from_hex(0x6679cc)),
string: Some(Color::from_hex(0xac9739)),
function: Some(Color::from_hex(0x3d8fd1)),
variable: Some(Color::from_hex(0xc94922)),
r#type: Some(Color::from_hex(0xc08b30)),
constant: Some(Color::from_hex(0xc76b29)),
operator: Some(Color::from_hex(0x979db4)),
tag: Some(Color::from_hex(0xc94922)),
error: Some(Color::from_hex(0xc94922)),
warning: Some(Color::from_hex(0xc08b30)),
info: Some(Color::from_hex(0x3d8fd1)),
success: Some(Color::from_hex(0xac9739)),
red: Some(Color::from_hex(0xc94922)),
orange: Some(Color::from_hex(0xc76b29)),
yellow: Some(Color::from_hex(0xc08b30)),
green: Some(Color::from_hex(0xac9739)),
cyan: Some(Color::from_hex(0x22a2c9)),
blue: Some(Color::from_hex(0x3d8fd1)),
purple: Some(Color::from_hex(0x6679cc)),
magenta: Some(Color::from_hex(0x9c637a)),
};