dwind 0.7.0

Style your DOMINATOR applications using a tailwind-like syntax and utility class collection!
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#[macro_export]
macro_rules! background_scratched_generator {
    ($color1:tt, $color2:tt) => {
        const_format::formatcp!(
            "background-image: repeating-linear-gradient(45deg, {}, {} 4px, {} 4px, {} 8px);",
            $color1,
            $color1,
            $color2,
            $color2
        )
    };
}