Last updated

logo

Use the logo section to display a custom logo in the portal navbar.

You must provide the path to the logo image as the value of the image property in the logo object. The image file may be external or must exist in the portal project.

Options

OptionTypeDescription
imagestringConditionally required. URL or path to the image file (png or svg) of the logo.
srcSetstringConditionally required. Comma-separated list of logo file paths and corresponding color mode. When configured, the logo changes when the user switches between color modes.
altTextstringAlternate text for the logo.
linkstringLogo link to a full URL including the protocol (for example, `https://www.redocly.com).
faviconstringURL or path to the favicon (png or svg).

* Logo object must include either image or srcSet ("mutually exclusive").

Examples

Logo from local asset

redocly.yaml
logo:
  image: ./images/logos/logo-example.svg
  altText: Amazing example logo
  link: "https://example.com"
  favicon: ./images/logos/favicon-example.svg

Logo from URL

redocly.yaml
logo:
  image: "https://example.com/logo-example.svg"
  altText: Amazing example logo
  link: "https://example.com"
  favicon: "https://example.com/favicon.ico"

Logo from srcSet

Used to configure logos for a specific color mode.

redocly.yaml
logo:
  srcSet: "./images/example-logo-light.svg light, ./images/example-logo-dark.svg dark"
  altText: Amazing example logo
  link: "https://example.com"
  favicon: ./images/logos/favicon-example.svg