Freeze Design Frontend - TypeScript API
    Preparing search index...

    Interface Color

    interface Color {
        id: number;
        name: string;
        hex_code: string;
        is_active: boolean;
        secondary_color?:
            | { id: number; name: string; hex_code: string; is_active: boolean }
            | null;
        primary_slot_label?: string;
        secondary_slot_label?: string;
    }
    Index

    Properties

    id: number
    name: string
    hex_code: string
    is_active: boolean
    secondary_color?:
        | { id: number; name: string; hex_code: string; is_active: boolean }
        | null
    primary_slot_label?: string
    secondary_slot_label?: string