How to customize poll pie chart colors?

It’s not currently possible, but it is something we’ve done in canvas elements before so we can also make it possible here!

This was just merged

https://github.com/discourse/discourse/pull/36495

So if you update Discourse a little later today, you’ll have access to some new variables for both bar and pie charts:

:root {
  --poll-pie-color-1: red;
  --poll-pie-color-2: yellow;
  /* --poll-pie-color-3: hotpink; etc */
        
  --poll-bar-background: lightblue;
  --poll-bar-color: blue;
  --poll-bar-color--chosen: salmon;
}
4 Likes