diff options
Diffstat (limited to 'core/src/background.rs')
-rw-r--r-- | core/src/background.rs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/core/src/background.rs b/core/src/background.rs new file mode 100644 index 00000000..59b67a2c --- /dev/null +++ b/core/src/background.rs @@ -0,0 +1,7 @@ +use crate::Color; + +#[derive(Debug, Clone, Copy, PartialEq)] +pub enum Background { + Color(Color), + // TODO: Add gradient and image variants +} |