mirror of
https://github.com/goauthentik/authentik
synced 2026-05-09 08:32:47 +02:00
44 lines
1.3 KiB
Plaintext
44 lines
1.3 KiB
Plaintext
### General settings (both Admin and User interfaces)
|
||
|
||
#### `settings.navbar.userDisplay`
|
||
|
||
Configure what is shown in the top right corner. Defaults to `username`. Available options: `username`, `name`, `email`
|
||
|
||
#### `settings.theme.base`
|
||
|
||
Configure the base color scheme or toggle between dark and light modes. The default setting is `automatic`, which adapts based on the user’s browser preference. Available options: `automatic`, `dark`, `light`.
|
||
|
||
**Example**:
|
||
|
||
```
|
||
settings:
|
||
theme:
|
||
base: dark
|
||
```
|
||
|
||
#### `settings.theme.background`
|
||
|
||
Optional CSS that is applied to the background of the User interface, for example to set a custom background color, gradient, or image.
|
||
|
||
```yaml
|
||
settings:
|
||
theme:
|
||
background: >
|
||
background: url('https://picsum.photos/1920/1080');
|
||
filter: blur(8px);
|
||
background-position: center;
|
||
background-repeat: no-repeat;
|
||
background-size: cover;
|
||
```
|
||
|
||
#### `settings.locale`
|
||
|
||
The locale used by the interface. Set this on the default brand to configure the language instance-wide, or on user and group attributes to configure defaults for specific users or group memberships. Users can still choose their own preferred locale in user settings.
|
||
|
||
**Example**:
|
||
|
||
```yaml
|
||
settings:
|
||
locale: en
|
||
```
|