enum ColorsEnum { white = '#ffffff', black = '#000000', } type Color = keyof typeof ColorsEnum; // 'white' | 'black' let colorLiteral: Color colorLiteral = "white" // OK colorLiteral = "black" // OK colorLiteral = "red" // Error...