You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/resource-specific-documentation.md
+66Lines changed: 66 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -368,3 +368,69 @@ Contents of `reset_email_by_code.json`
368
368
"html": "./reset_email_by_code.html"
369
369
}
370
370
```
371
+
372
+
## Branding
373
+
374
+
This resource allows to manage branding within your Auth0 tenant. Auth0 can be customized with a look and feel that aligns with your organization's brand requirements and user expectations. `universal_login` template can be customized (make sure to add `read:custom_domains` scope to export templates).
375
+
376
+
**YAML Example**
377
+
378
+
Folder structure when in YAML mode.
379
+
380
+
```yaml
381
+
branding:
382
+
colors:
383
+
page_background: '#FF4F40'
384
+
primary: '#2A2E35'
385
+
favicon_url: https://example.com/favicon.png
386
+
font:
387
+
url: https://example.com/font.woff
388
+
logo_url: https://example.com/logo.png
389
+
templates:
390
+
- template: universal_login
391
+
body: ./branding_templates/universal_login.html
392
+
```
393
+
394
+
**Directory Example**
395
+
396
+
Folder structure when in directory mode.
397
+
398
+
```json
399
+
{
400
+
"colors": {
401
+
"page_background": "#FF4F40",
402
+
"primary": "#2A2E35"
403
+
},
404
+
"favicon_url": "https://example.com/favicon.png",
405
+
"font": {
406
+
"url": "https://example.com/font.woff"
407
+
},
408
+
"logo_url": "https://example.com/logo.png"
409
+
}
410
+
```
411
+
412
+
For `universal_login` template `templates/` will be created.
0 commit comments