7 lines
147 B
Rust
7 lines
147 B
Rust
use crate::Color;
|
|
|
|
#[derive(Debug, Clone, Copy, PartialEq)]
|
|
pub enum Background {
|
|
Color(Color),
|
|
// TODO: Add gradient and image variants
|
|
}
|