use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Rosé Pine Dawn"),
author: Cow::Borrowed("Emilia Dunfelt <edun@dunfelt.se>"),
variant: Variant::Light,
contrast: Contrast::Normal,
bg: Color::from_hex(0xfaf4ed),
fg: Color::from_hex(0x575279),
cursor: Some(Color::from_hex(0x575279)),
selection: Some(Color::from_hex(0xf2e9de)),
line_highlight: Some(Color::from_hex(0xfffaf3)),
gutter: Some(Color::from_hex(0x9893a5)),
statusbar_bg: Some(Color::from_hex(0xfffaf3)),
statusbar_fg: Some(Color::from_hex(0x797593)),
comment: Some(Color::from_hex(0x9893a5)),
keyword: Some(Color::from_hex(0xea9d34)),
string: Some(Color::from_hex(0x286983)),
function: Some(Color::from_hex(0x907aa9)),
variable: Some(Color::from_hex(0xb4637a)),
r#type: Some(Color::from_hex(0xd7827e)),
constant: Some(Color::from_hex(0xea9d34)),
operator: Some(Color::from_hex(0x575279)),
tag: Some(Color::from_hex(0xb4637a)),
error: Some(Color::from_hex(0xb4637a)),
warning: Some(Color::from_hex(0xd7827e)),
info: Some(Color::from_hex(0x907aa9)),
success: Some(Color::from_hex(0x286983)),
red: Some(Color::from_hex(0xb4637a)),
orange: Some(Color::from_hex(0xea9d34)),
yellow: Some(Color::from_hex(0xd7827e)),
green: Some(Color::from_hex(0x286983)),
cyan: Some(Color::from_hex(0x56949f)),
blue: Some(Color::from_hex(0x907aa9)),
purple: Some(Color::from_hex(0xea9d34)),
magenta: Some(Color::from_hex(0xcecacd)),
};