theming_customcss

Stars
19

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.

Use theming color values

Admin can use CSS custom properties to make use of the variables that are available from the default.css variables file file:

Example:

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