summaryrefslogtreecommitdiffstats
path: root/core/src/background.rs
blob: 59b67a2c89bb82dca1e63cd86d42b117e5166fb3 (plain) (blame)
1
2
3
4
5
6
7
use crate::Color;

#[derive(Debug, Clone, Copy, PartialEq)]
pub enum Background {
    Color(Color),
    // TODO: Add gradient and image variants
}