use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Da One Paper"),
author: Cow::Borrowed("NNB (https://github.com/NNBnh)"),
variant: Variant::Light,
contrast: Contrast::High,
bg: Color::from_hex(0xfaf0dc),
fg: Color::from_hex(0x181818),
cursor: Some(Color::from_hex(0x181818)),
selection: Some(Color::from_hex(0x888888)),
line_highlight: Some(Color::from_hex(0xc8c8c8)),
gutter: Some(Color::from_hex(0x585858)),
statusbar_bg: Some(Color::from_hex(0xc8c8c8)),
statusbar_fg: Some(Color::from_hex(0x282828)),
comment: Some(Color::from_hex(0x585858)),
keyword: Some(Color::from_hex(0xc173d1)),
string: Some(Color::from_hex(0x76a85d)),
function: Some(Color::from_hex(0x5890f8)),
variable: Some(Color::from_hex(0xde5d6e)),
r#type: Some(Color::from_hex(0xb3684f)),
constant: Some(Color::from_hex(0xff9470)),
operator: Some(Color::from_hex(0x181818)),
tag: Some(Color::from_hex(0xde5d6e)),
error: Some(Color::from_hex(0xde5d6e)),
warning: Some(Color::from_hex(0xb3684f)),
info: Some(Color::from_hex(0x5890f8)),
success: Some(Color::from_hex(0x76a85d)),
red: Some(Color::from_hex(0xde5d6e)),
orange: Some(Color::from_hex(0xff9470)),
yellow: Some(Color::from_hex(0xb3684f)),
green: Some(Color::from_hex(0x76a85d)),
cyan: Some(Color::from_hex(0x64b5a7)),
blue: Some(Color::from_hex(0x5890f8)),
purple: Some(Color::from_hex(0xc173d1)),
magenta: Some(Color::from_hex(0xb3684f)),
};