@cfxlabsinc/b2b-services
    Preparing search index...

    Type Alias BankDashboardTheme

    Per-bank bank-dashboard theming, stored on the theme jsonb column. A null column means CFX defaults apply. All fields are optional: displayName defaults to the bank's name; logo/favicon paths are CDN-relative paths resolved against NEXT_PUBLIC_STATIC_ASSET_BASE_URL. The brand* fields are the per-mode --brand / --brand-foreground tokens, entered directly as CSS colors (hex or oklch(...)) by the operator and injected verbatim into the dashboard — *Foreground is the text/contrast color used on a --brand background. Dark falls back to light when its values are unset.

    type BankDashboardTheme = {
        brandDark?: string;
        brandDarkForeground?: string;
        brandLight?: string;
        brandLightForeground?: string;
        displayName?: string;
        faviconPath?: string;
        logoDark?: string;
        logoLight?: string;
    }
    Index

    Properties

    brandDark?: string
    brandDarkForeground?: string
    brandLight?: string
    brandLightForeground?: string
    displayName?: string
    faviconPath?: string
    logoDark?: string
    logoLight?: string