How to set accent color, widgets and size using CSS ? #117
-
EDIT: sorry, I forgot you enabled the discussions section, it's still so rare nowadays. Feel free to move this there. Thanks |
Beta Was this translation helpful? Give feedback.
Answered by
jarek-foksa
Aug 6, 2022
Replies: 1 comment 2 replies
-
In order to change the accent color of a specific element or subtree you will have to override custom properties such as To change the size via CSS you should just override the Generally I do not recommend doing any of this as it will make your UI look inconsistent. |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
jarek-foksa
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In order to change the accent color of a specific element or subtree you will have to override custom properties such as
--accent-color
,--light-accent-color
and--dark-accent-color
.To change the size via CSS you should just override the
width
,height
,min-width
,min-height
or similar properties.Generally I do not recommend doing any of this as it will make your UI look inconsistent.