iced-yoda/style/src/application.rs

8 lines
125 B
Rust
Raw Normal View History

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