Default unstyled text to be red instead of transparent

This commit is contained in:
Nathan Sobo 2021-08-24 17:11:27 -06:00
parent 8179f90589
commit 8559be9f92

View File

@ -14,12 +14,21 @@ pub struct FontId(pub usize);
pub type GlyphId = u32;
#[derive(Clone, Debug, Default, PartialEq, Eq)]
#[derive(Clone, Debug, PartialEq, Eq)]
pub struct TextStyle {
pub color: Color,
pub font_properties: Properties,
}
impl Default for TextStyle {
fn default() -> Self {
Self {
color: Color::from_u32(0xff0000ff),
font_properties: Default::default(),
}
}
}
#[allow(non_camel_case_types)]
#[derive(Deserialize)]
enum WeightJson {