polished-css 0.1.0

Craft polished CSS in Rust following CSSWG standards. Achieve type-safety, modularity, atomicity, and ergonomic styling for front-end applications.
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[macro_export]
macro_rules! test_property_initial_value {
    ($property:ident, $value:ident) => {{
        ::paste::paste! {
            assert_eq!(
                super::$property::default(),
                super::$property(super::[< $property Value >]::$value),
            );
        }
    }};
}