export interface ActiveTabColor { 'border-bottom-color': string; 'color': string; } export interface BackgroundColor { 'background-color': string; } export interface BorderBottomColor { 'border-bottom-color': string; } export interface Color { 'color': string; } export interface PrimaryButtonColors { 'background-color': string; 'border-color': string; } export interface RGB { r: number; g: number; b: number; } export interface RGBAStyles { backgroundColor: string | undefined; color: string | undefined; } export interface SelectedMenuItemColors { 'background-color': string; 'color': string; }