Canvas: Black background and colored card backgrounds?

What I’m trying to do

I would like to have a black canvas background and colored card-backgrounds, but every theme or setting i tried that provides a black canvas background, will also result in black card backgrounds and only the borders of the cards will be affected by the selection of the color.

Things I have tried

Various themes and settings.

Is this possible?
Thank you!

You could try this CSS snippet to start:

.canvas-node.is-themed .canvas-node-container {
    background-color: rgba(var(--canvas-color), 0.6);
}

It takes whatever color you pick (normally the border color only) and sets it as the background color, 0.6 opacity.


You can also use a #tag or cssclasses in the card itself (pointing to some custom CSS) to set the look of individual cards.

I’ll move this to Custom CSS & Theme Design for now.

1 Like

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.