
We shouldn't assume all themes will give us solid status color backgrounds. This change makes it so the status color renders on top of a normal elevated surface background. #### Before | After (Transparent status background color – Fixed)   --- #### Before | After (Solid status background color – No change)   Release Notes: - Improved support for transparent status colors in themes.
15 lines
242 B
Rust
15 lines
242 B
Rust
mod appearance;
|
|
mod color;
|
|
mod elevation;
|
|
mod platform;
|
|
mod spacing;
|
|
mod typography;
|
|
mod units;
|
|
|
|
pub use appearance::*;
|
|
pub use color::*;
|
|
pub use elevation::*;
|
|
pub use platform::*;
|
|
pub use spacing::*;
|
|
pub use typography::*;
|
|
pub use units::*;
|