1use crate::{Color, Vector};
23/// A shadow.
4#[derive(Debug, Clone, Copy, PartialEq, Default)]
5pub struct Shadow {
6/// The color of the shadow.
7pub color: Color,
89/// The offset of the shadow.
10pub offset: Vector,
1112/// The blur radius of the shadow.
13pub blur_radius: f32,
14}