Color Scheme Option

interface ColorSchemeOption

color-scheme-option.interface.ts
import { AvailableColorScheme } from '@jet/types/available-color-scheme.type';

export interface ColorSchemeOption {
  icon: string;
  nameKey: string;
  themeColor: string | null;
  value: AvailableColorScheme;
}

Last updated

Was this helpful?