/** The structure of value of each accent color */ export interface ThemeRgbColor { /** Color's red channel value from 0 to 255 */ r: number; /** Color's green channel value from 0 to 255 */ g: number; /** Color's blue channel value from 0 to 255 */ b: number; }