export interface Theme {
  class?: string | string[],
  color: string;
  name: string;
  default?: boolean;
}
