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 }