Color Scheme Option
interface ColorSchemeOption
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?