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

/// The background of some element.
#[derive(Debug, Clone, Copy, PartialEq)]
pub enum Background {
    /// A solid color
    Color(Color),
    // TODO: Add gradient and image variants
}