platform-bible-utils
    Preparing search index...

    Interface ThemeCssVariables

    Theme colors and other CSS variable properties that adjust the looks of the application. These are applied in CSS properties using hsl(var(--variableName)) or Tailwind classes like tw-bg-primary

    See the wiki's Matching Application Theme section for more information.

    interface ThemeCssVariables {
        accent?: string;
        "accent-foreground"?: string;
        background?: string;
        border?: string;
        card?: string;
        "card-foreground"?: string;
        destructive?: string;
        "destructive-foreground"?: string;
        foreground?: string;
        input?: string;
        muted?: string;
        "muted-foreground"?: string;
        popover?: string;
        "popover-foreground"?: string;
        primary?: string;
        "primary-foreground"?: string;
        radius?: string;
        ring?: string;
        secondary?: string;
        "secondary-foreground"?: string;
        "sidebar-accent"?: string;
        "sidebar-accent-foreground"?: string;
        "sidebar-background"?: string;
        "sidebar-border"?: string;
        "sidebar-foreground"?: string;
        "sidebar-primary"?: string;
        "sidebar-primary-foreground"?: string;
        "sidebar-ring"?: string;
        [variableName: string]: undefined | string;
    }

    Indexable

    • [variableName: string]: undefined | string
    Index

    Properties

    accent?: string
    "accent-foreground"?: string
    background?: string
    border?: string
    card?: string
    "card-foreground"?: string
    destructive?: string
    "destructive-foreground"?: string
    foreground?: string
    input?: string
    muted?: string
    "muted-foreground"?: string
    popover?: string
    "popover-foreground"?: string
    primary?: string
    "primary-foreground"?: string
    radius?: string
    ring?: string
    secondary?: string
    "secondary-foreground"?: string
    "sidebar-accent"?: string
    "sidebar-accent-foreground"?: string
    "sidebar-background"?: string
    "sidebar-border"?: string
    "sidebar-foreground"?: string
    "sidebar-primary"?: string
    "sidebar-primary-foreground"?: string
    "sidebar-ring"?: string