iced/style/src/application.rs
2022-05-26 19:02:15 +02:00

7 lines
125 B
Rust

use iced_core::Color;
pub trait StyleSheet {
fn background_color(&self) -> Color;
fn text_color(&self) -> Color;
}