Auth0 · Schema

OrganizationBrandingColors

Color scheme used to customize the login pages.

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
primary string HEX Color for primary elements.
page_background string HEX Color for background.
View JSON Schema on GitHub

JSON Schema

auth0-organizationbrandingcolors-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/OrganizationBrandingColors",
  "title": "OrganizationBrandingColors",
  "type": "object",
  "description": "Color scheme used to customize the login pages.",
  "additionalProperties": false,
  "required": [
    "primary",
    "page_background"
  ],
  "properties": {
    "primary": {
      "type": "string",
      "description": "HEX Color for primary elements.",
      "format": "html-color"
    },
    "page_background": {
      "type": "string",
      "description": "HEX Color for background.",
      "format": "html-color"
    }
  }
}