1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
//! [`Component`]: per-state colors for an interactive element.
//!
//! Embedded-trimmed: no `hovered` state (touch screens have no pointer-over
//! phase).
use PixelColor;
/// Colors for an interactive UI element (button, tab, link).
///
/// The five fields cover the four visual states in
/// [`Status`](crate::Status): `base` is used for `Active` and `Focused`,
/// `pressed` for `Pressed`, and `disabled` for `Disabled`. The remaining
/// fields carry the foreground (`on_base`) and border stroke.