summaryrefslogtreecommitdiffstats
path: root/style/src/application.rs
blob: 4aa950fbcd6bfd93c690e65b463828d8b540956b (plain) (blame)
1
2
3
4
5
6
7
use iced_core::Color;

pub trait StyleSheet {
    fn background_color(&self) -> Color;

    fn text_color(&self) -> Color;
}