mirror of
https://github.com/goauthentik/authentik.git
synced 2026-06-18 03:19:51 +03:00
2c452306cf
* website/docs: fix typos and style issues * website/docs: fix additional style issues * website/docs: fix more typos and style issues * website/integrations: fix additional style issues * website/integrations: fix additional doc style issues * website/docs: fix remaining heading style * Update website/docs/add-secure-apps/flows-stages/flow/examples/flows.md Signed-off-by: Dominic R <dominic@goauthentik.io> * Keep Flow Inspector capitalization * Preserve Flow Inspector copy edits * Use upper left as location phrase * Capitalize Style Guide title * Capitalize Style Guide references * docs: restore Google Cloud position wording https://github.com/goauthentik/authentik/pull/22141#discussion_r3206020115 * docs: clarify Kimai admin group wording https://github.com/goauthentik/authentik/pull/22141#discussion_r3206021939 * docs: bold Rocket.Chat UI labels https://github.com/goauthentik/authentik/pull/22141#discussion_r3206026650 * docs: clarify HashiCorp Cloud domain wording https://github.com/goauthentik/authentik/pull/22141#discussion_r3206030894 https://github.com/goauthentik/authentik/pull/22141#discussion_r3206031499 * docs: bold Organizr UI labels https://github.com/goauthentik/authentik/pull/22141#discussion_r3206035986 * docs: preserve phpIPAM IDP field labels https://github.com/goauthentik/authentik/pull/22141#discussion_r3206047963 * docs: preserve Salesforce JIT capitalization https://github.com/goauthentik/authentik/pull/22141#discussion_r3206058869 * docs: preserve Salesforce SSO capitalization https://github.com/goauthentik/authentik/pull/22141#discussion_r3206059734 * docs: revise Bitwarden login verification wording https://github.com/goauthentik/authentik/pull/22141#discussion_r3206063697 * docs: restore enterprise billing position wording https://github.com/goauthentik/authentik/pull/22141#discussion_r3206008593 --------- Signed-off-by: Dominic R <dominic@goauthentik.io>
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
|
||
```
|