graphics/color/
mod.rs

1mod argb8888;
2pub mod palette;
3mod rgb565;
4mod rgb888;
5mod rgba8888;
6
7pub use argb8888::*;
8pub use rgb565::*;
9pub use rgb888::*;
10pub use rgba8888::*;
11
12pub type Color = ColorRGB888;
13
14pub type RenderingColor = ColorRGB565;