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.rs7
1 files changed, 7 insertions, 0 deletions
diff --git a/style/src/application.rs b/style/src/application.rs
new file mode 100644
index 00000000..4aa950fb
--- /dev/null
+++ b/style/src/application.rs
@@ -0,0 +1,7 @@
+use iced_core::Color;
+
+pub trait StyleSheet {
+ fn background_color(&self) -> Color;
+
+ fn text_color(&self) -> Color;
+}