Welcome to mirror list, hosted at ThFree Co, Russian Federation.

README.md - github.com/juliushaertl/theming_customcss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cf4c53dd17863f006a7875770371f4184d3ab4f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Custom CSS: customize your CSS to better fit your Theming needs

Allow admins to add custom CSS to their Nextcloud instance from inside the Theming settings.

![](https://github.com/juliushaertl/theming_customcss/raw/master/screenshot.png)

## Use theming color values

Admin can use CSS custom properties to make use of the variables that are available from the [css-variables.scss](https://github.com/nextcloud/server/blob/master/core/css/css-variables.scss) file:

Example:

```
#element {
  color: var(--color-primary);
}
```