If you know CSS, you can make slight changes to the appearance of the scheme. This functionality is intended for minimal cosmetic changes to the system and is not suitable for creating your own system design, as we develop without considering backward compatibility with custom designs!
Add css
values to the h_custom_css
field in the settings
table.
Everything within the body
rule will be applied to both themes.
Everything within the body:not(.theme-dark)
rule will be applied only to the light theme.
Everything within the body.theme-dark
rule will be applied to the dark theme.
body:not(.theme-dark){
background-color: red
}
body.theme-dark{
background-color: green
}
Please note that CSS rules are applied sequentially.