How to Monet?

Hi. I want to grab Monet from system color pallet (A12+) and place in my widget background. How do i make this?

You can use $si(sysca1, 50)$ for example to take first Material You accent color at 50% tone (there is also sysca2 and sysca3). Documentation is available at:

Or, for a more manual solution, you can refer to this post on REDDIT for a similar question answer was:

Accent:
$ce(ce(ce(si(wpcolor1), alpha, 100), sat, if(si(darkmode), 30, 49)), lum, if(si(darkmode), 100, 52))$

Dark Bg:
$ce(ce(ce(si(wpcolor2), alpha, 100), sat, 40+20*(si(darkmode)=0)), lum, 20+80*si(darkmode))$

Thanks! I will read both the documentation and the reddit post :slight_smile: