mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
daa30f3aa3
* [FEATURE] Add theme support This change allows users to select a theme for Authelia on start-up. The default will continue to be the existing theme which is known as `light`. Three new options are now also provided: * `dark` * `grey` * `custom` The `custom` theme allows users to specify a primary and secondary hex color code to be utilised to style the portal. Co-authored-by: BankaiNoJutsu <lbegert@gmail.com> * Add themes to integration tests * Remove custom theme * Fix linting issue in access_control_test.go Co-authored-by: BankaiNoJutsu <lbegert@gmail.com>
22 lines
318 B
Markdown
22 lines
318 B
Markdown
---
|
|
layout: default
|
|
title: Theme
|
|
parent: Configuration
|
|
nav_order: 11
|
|
---
|
|
|
|
# Theme
|
|
|
|
The theme section configures the theme and style Authelia uses.
|
|
|
|
There are currently 3 available themes for Authelia:
|
|
* light (default)
|
|
* dark
|
|
* grey
|
|
|
|
## Configuration
|
|
|
|
```yaml
|
|
# The theme to display: light, dark, grey
|
|
theme: light
|
|
``` |