//! Palette module exposing color types and the palette RAM device.
//!
//! Provides color representations, emphasis flags and the palette RAM model used
//! by the PPU for background and sprite color lookups.
pub use Color;
pub use EmphasisFlags;
pub use PaletteColorIndex;
pub use Ram;