Skip to main content

Customize Portal Branding

Alpha Feature

Features described on this page are in alpha and subject to change. For access, contact your Replicated account representative.

Branding for the new Enterprise Portal is configured entirely through your content repo. There is no branding UI in the Vendor Portal. Include a theme.yaml file in your repo to override branding for any version of your docs.

For content customization (pages, navigation, MDX components), see Customize Portal Content.

theme.yaml reference

note

All branding fields must be nested under the branding: key. Placing fields like primaryColor at the root level will cause a sync error. Only customCSS and customCSSFile go at the root level.

Example:

# theme.yaml
branding:
title: "Acme Portal"
primaryColor: "#4f46e5"
secondaryColor: "#6366f1"
logo: assets/logo.png
favicon: assets/favicon.ico
contact: "support@acme.com"
supportPortalLink: "https://support.acme.com"
background: minimal

# Login page footer. Customize or remove these to brand your login page.
# Warning: removing the login footer without a custom domain may cause
# your portal to be flagged by Google Safe Browsing.
loginFooterText: "Secured by Acme Corp"
loginFooterLinks:
- label: Privacy
url: https://acme.com/privacy
- label: Terms
url: https://acme.com/terms

# Optional: custom CSS (inline or file reference)
customCSS: |
.portal-header { border-bottom: 2px solid #4f46e5; }
# customCSSFile: assets/custom.css

Branding fields

FieldTypeNotes
titlestringPortal title override, max 255 chars
overviewstringPortal description, max 2000 chars
logofile pathLogo image, max 2MB (resolved to data URI)
faviconfile pathFavicon, max 500KB
primaryColorhexPrimary brand color (#RGB or #RRGGBB)
secondaryColorhexSecondary brand color
linkColorhexLink color
linkHoverColorhexLink hover color
backgroundenumminimal, custom, or image
backgroundImagefile pathBackground image, max 5MB (requires background: image)
customColor1 / customColor2hexCustom gradient colors (required when background: custom)
headerColor / headerGradientEndhexHeader gradient
sidebarColor / sidebarGradientEndhexSidebar gradient
contentBackgroundColor / contentBackgroundGradientEndhexContent area gradient
customCSSinline stringInline CSS overrides, max 50KB
customCSSFilefile pathPath to external CSS file, max 50KB
contactstringSupport contact info, max 255 chars
supportPortalLinkURLExternal support link, max 2048 chars (http/https only)
loginFooterTextstringLogin page footer text, max 255 chars. Omit to use defaults. Set to empty string to hide.
loginFooterLinkslistLogin page footer links. Each item has label (string, max 255 chars) and url (http/https, max 2048 chars). Omit to use defaults. Set to empty list to hide.

By default, the login page shows a footer with "Secured by Enterprise Portal" and links to Privacy, Terms, and Contact pages on enterpriseportal.app. You can customize the text and links via loginFooterText and loginFooterLinks to point to your own pages.

On a custom domain, you can remove the footer entirely by omitting these fields or setting loginFooterText to an empty string.

caution

On *.enterpriseportal.app domains (no custom domain), keeping the footer is recommended to avoid Google Safe Browsing flagging.