1// TODO: expose to user 2pub struct Defaults { 3 pub text_color: iced::Color, 4} 5 6impl Default for Defaults { 7 fn default() -> Self { 8 Self { 9 text_color: iced::Color::WHITE, 10 } 11 } 12}