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

Email notification in google apps script -

c++ - Difference between pre and post decrement in recursive function argument -

javascript - IE11 incompatibility with jQuery's 'readonly'? -