1 2 3 4 5 6 7 8 9 10 11 12 13
//! Line/Border aspects types use super::{Color, Size}; // Border /// Border settings /// - [Size] /// - [Color] /// - [Radius] pub type Border = (Size, Color, Radius); /// Radius (in px) /// - [Size] pub type Radius = Size;