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: f8bc42862ac7862d5b5b26766636825a6faa8c4c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# theming_customcss

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

With Nextcloud 14 you 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);
}
```