# theming_customcss **Repository Path**: mirrors_nextcloud/theming_customcss ## Basic Information - **Project Name**: theming_customcss - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-12-02 - **Last Updated**: 2026-01-11 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 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 [default.css variables file](https://github.com/nextcloud/server/blob/master/apps/theming/css/default.css) file: Example: ``` #element { color: var(--color-primary); } ``` ## *How can I recover if my customized CSS code has broken the user interface?* The css configuration is stored in the app config database table, but you can use the `occ config:app:*` commands to obtain, modify or reset it as well. e.g. ``` occ config:app:get theming_customcss customcss occ config:app:set theming_customcss customcss --value "body { background-color: red; }" occ config:app:delete theming_customcss customcss ```