1 2 3 4 5 6 7
use iced_core::Color; pub trait StyleSheet { fn background_color(&self) -> Color; fn text_color(&self) -> Color; }