summaryrefslogtreecommitdiffstats
path: root/style/src/application.rs
diff options
context:
space:
mode:
Diffstat (limited to 'style/src/application.rs')
-rw-r--r--style/src/application.rs13
1 files changed, 13 insertions, 0 deletions
diff --git a/style/src/application.rs b/style/src/application.rs
new file mode 100644
index 00000000..d48c6a34
--- /dev/null
+++ b/style/src/application.rs
@@ -0,0 +1,13 @@
+use iced_core::Color;
+
+pub trait StyleSheet {
+ type Style: Default + Copy;
+
+ fn appearance(&self, style: Self::Style) -> Appearance;
+}
+
+#[derive(Debug, Clone, Copy, PartialEq)]
+pub struct Appearance {
+ pub background_color: Color,
+ pub text_color: Color,
+}