summaryrefslogtreecommitdiffstats
path: root/graphics/src/widget/canvas/style.rs
blob: 794109bd8b3d901aaf671f0c68186422c4003c3c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
use crate::{Color, Gradient};

/// The coloring style of some drawing.
#[derive(Debug, Clone, PartialEq)]
pub enum Style {
    /// A solid [`Color`].
    Solid(Color),

    /// A [`Gradient`] color.
    Gradient(Gradient),
}