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