Providing a Newtype instance for ColorName means that you're able to wrap and unwrap ColorName values, even though the constructor is not exported: ``` import Data.Newtype import Lumi.Components.Color huh :: String huh = unwrap colorNames.black ``` We should probably export the constructor, or remove the Newtype instance.