use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Colonoscopy"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x161a1c),
fg: Color::from_hex(0xc0b6a8),
cursor: Some(Color::from_hex(0xd0c179)),
selection: Some(Color::from_hex(0x2a4750)),
line_highlight: None,
gutter: Some(Color::from_hex(0x383938)),
statusbar_bg: Some(Color::from_hex(0x272a2a)),
statusbar_fg: Some(Color::from_hex(0xc0b6a8)),
comment: Some(Color::from_hex(0xaeaeae)),
keyword: Some(Color::from_hex(0xa1877e)),
string: Some(Color::from_hex(0xb9a185)),
function: None,
variable: Some(Color::from_hex(0x8d776e)),
r#type: None,
constant: Some(Color::from_hex(0xa1877e)),
operator: None,
tag: None,
error: None,
warning: None,
info: None,
success: None,
red: None,
orange: None,
yellow: None,
green: Some(Color::from_hex(0xb9a185)),
cyan: Some(Color::from_hex(0xa1877e)),
blue: None,
purple: Some(Color::from_hex(0xa1877e)),
magenta: Some(Color::from_hex(0x8d776e)),
};