How To Convert Enum To Union

export enum Colors {
  black = '#000000'
  white = '#ffffff'
}
 
export type UnionColors = `${Colors}`