Auth0 · Schema

BrandingColors

Custom color settings.

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
primary string Accent color.
page_background object
View JSON Schema on GitHub

JSON Schema

auth0-brandingcolors-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BrandingColors",
  "title": "BrandingColors",
  "type": "object",
  "description": "Custom color settings.",
  "additionalProperties": false,
  "minProperties": 1,
  "properties": {
    "primary": {
      "type": "string",
      "description": "Accent color.",
      "format": "html-color"
    },
    "page_background": {
      "$ref": "#/components/schemas/BrandingPageBackground"
    }
  }
}