blob: f61cdc29924a8290c9861c9ed7b598f68dfb2efe [file] [log] [blame]
export interface ColorSchemeConfig {
colors: string[];
description?: string;
id: string;
label?: string;
}
export default class ColorScheme {
colors: string[];
description: string;
id: string;
label: string;
constructor(config: ColorSchemeConfig) {
const { colors, description = '', id, label } = config;
this.id = id;
this.label = label ?? id;
this.colors = colors;
this.description = description;
}
}