//! Shared 6-bit-per-channel palette types used by `.kvx` and `.kv6`.
//!
//! Voxlap's on-disk palettes encode each RGB component as 6 bits
//! (`0..=63`). The engine widens to 8-bit by left-shifting 2 (low 2 bits
//! zero), then sets the `0x80000000` "brightness" bit when packing to
//! a 32-bit colour word. [`Rgb6::to_voxlap_argb`] performs that
//! conversion exactly as voxlaptest's `setkvx` / `loadkv6` do.
/// A 6-bit-per-channel palette entry.