Skip to main content

rnk_style_core/
lib.rs

1//! Shared style primitives for rnk crates.
2
3mod border;
4mod color;
5
6pub use border::BorderStyle;
7pub use color::{
8    AdaptiveColor, Color, adaptive_colors, detect_background, init_background_detection,
9    is_dark_background, set_dark_background,
10};