Hiyve Components - v1.0.0
    Preparing search index...

    Customizable colors for FileManager component.

    const darkThemeColors: Partial<FileManagerColors> = {
    background: '#1a1a1a',
    rowHover: 'rgba(255,255,255,0.05)',
    selectedRow: 'rgba(0,120,212,0.2)',
    dragHover: 'rgba(0,150,255,0.3)'
    };

    <FileManager colors={darkThemeColors} />
    interface FileManagerColors {
        background: string;
        breadcrumbBackground: string;
        cardBorder: string;
        cardHoverBorder: string;
        cardSelected: string;
        disabled: string;
        dragHover: string;
        emptyStateText: string;
        errorText: string;
        folderCardBackground: string;
        loadingIndicator: string;
        rowHover: string;
        selectedRow: string;
        toolbarBackground: string;
    }
    Index

    Properties

    background: string

    Background color of the file manager

    breadcrumbBackground: string

    Breadcrumb background color

    cardBorder: string

    Card border color

    cardHoverBorder: string

    Card hover border color

    cardSelected: string

    Card selected background

    disabled: string

    Disabled button color

    dragHover: string

    Drag hover highlight color (for folders)

    emptyStateText: string

    Empty state text color

    errorText: string

    Error text color

    folderCardBackground: string

    Folder card background tint

    loadingIndicator: string

    Loading indicator color

    rowHover: string

    Row hover background color

    selectedRow: string

    Selected row background color

    toolbarBackground: string

    Toolbar background color