mousefood 0.5.0

embedded-graphics backend for Ratatui
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
macro_rules! for_all_rgb_colors {
    (
        $inner:ident
    ) => {
        $inner!(Rgb555);
        $inner!(Bgr555);
        $inner!(Rgb565);
        $inner!(Bgr565);
        $inner!(Rgb666);
        $inner!(Bgr666);
        $inner!(Rgb888);
        $inner!(Bgr888);
    };
}

pub(crate) use for_all_rgb_colors;