use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("caroline"),
author: Cow::Borrowed("ed (https://codeberg.org/ed)"),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x1c1213),
fg: Color::from_hex(0xa87569),
cursor: Some(Color::from_hex(0xa87569)),
selection: Some(Color::from_hex(0x563837)),
line_highlight: Some(Color::from_hex(0x3a2425)),
gutter: Some(Color::from_hex(0x6d4745)),
statusbar_bg: Some(Color::from_hex(0x3a2425)),
statusbar_fg: Some(Color::from_hex(0x8b5d57)),
comment: Some(Color::from_hex(0x6d4745)),
keyword: Some(Color::from_hex(0xa63650)),
string: Some(Color::from_hex(0x806c61)),
function: Some(Color::from_hex(0x684c59)),
variable: Some(Color::from_hex(0xc24f57)),
r#type: Some(Color::from_hex(0xf28171)),
constant: Some(Color::from_hex(0xa63650)),
operator: Some(Color::from_hex(0xa87569)),
tag: Some(Color::from_hex(0xc24f57)),
error: Some(Color::from_hex(0xc24f57)),
warning: Some(Color::from_hex(0xf28171)),
info: Some(Color::from_hex(0x684c59)),
success: Some(Color::from_hex(0x806c61)),
red: Some(Color::from_hex(0xc24f57)),
orange: Some(Color::from_hex(0xa63650)),
yellow: Some(Color::from_hex(0xf28171)),
green: Some(Color::from_hex(0x806c61)),
cyan: Some(Color::from_hex(0x6b6566)),
blue: Some(Color::from_hex(0x684c59)),
purple: Some(Color::from_hex(0xa63650)),
magenta: Some(Color::from_hex(0x893f45)),
};