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

    Interface RoomCardColors

    Customizable colors for the RoomCard component. All colors accept any valid CSS color value (hex, rgb, rgba, hsl, etc.).

    const darkThemeColors: Partial<RoomCardColors> = {
    background: '#1e1e1e',
    border: '#333',
    hoverBackground: '#2a2a2a',
    headerBackground: '#252525',
    };
    interface RoomCardColors {
        background: string;
        border: string;
        headerBackground: string;
        hoverBackground: string;
        iconBackground: string;
        iconColor: string;
    }
    Index

    Properties

    background: string

    Card background color

    border: string

    Card border color

    headerBackground: string

    Card header/title area background color

    hoverBackground: string

    Card background color on hover

    iconBackground: string

    Background color for the room type icon block

    iconColor: string

    Icon color inside the room type icon block