Matrix question - How to fill the full cell

Hello all and thank you Emmanuel for the great app.

I want to build a controller for my DAW (Renoise). I want to control a matrix of steps and use Renoise fantastic Duplex framework.

Everything works fine, I just can’t figure out how I can fill the cell with a color. The accent just gives me the color of the border and the number, which is not what I want and it’s hard to catch for the eyes. How can I fill the cell with a color?
Thank you.

You should be able to do what you want with the css property. Assuming it’s a toggle matrix, this would work :

.toggle-container.on {
  background: var(--color-accent);
  color: black;
}

A few tips regarding css can be found here, besides the general css documentation available on the web.

Note that if you want more contrasted buttons in general, enabling the alt-buttons theme
should also do the job .

Fantastic, got it. Thank you so much for your help. You made my day. This app is wonderful and I am sure a lot more people will discover this great tool in future.