// @flow const colorPreferences: {| NONE: string, INVERTED: string, |} = Object.freeze({ NONE: 'none', INVERTED: 'inverted', }); export type ColorPreference = $Values; export default colorPreferences;