Reexporting types

Users of the library are likely to want to use our Color and Image types. We can make it easier for them by reexporting them in lib.rs.

❎ Using the appropriate pub use, reexport Color and Image from the top of the library.

From now on, users will be able to do:

use tp_led_matrix::{Color, Image};