qt - Darker QtColor in stylesheet -


is there way make color darker in string stylesheet in normal code know works.

qcolor(qcolor(@colorlevelthree).darker(600)) 

but im not entirely sure if theres way can in style sheet self or go different way

qpushbutton {     color: @colorlevelone;     background-color: @colorlevelthree;     border-width: 1px;     border-color: qcolor(qcolor(@colorlevelthree).darker(600));     border-style: solid;     border-bottom-width: 2px;     border-radius: 3px;     padding: 3px;     font-size: 12px;     padding-left: 5px;     padding-right: 5px;  } 


Comments

Popular posts from this blog

smartface.io - Proper way to change color scheme for whole application -

Email notification in google apps script -

javascript - three.js lot of meshes optimization -