Files
helvum/src/style.css
Tom A. Wagner 82a3e4f900 graphview: draw background automatically
This removes the manual painting of the background via cairo and adds the correct color to CSS instead,
which should hopefully improve performance as we do less cpu painting like this.
2021-11-24 16:11:16 +01:00

23 lines
350 B
CSS

@define-color audio rgb(50,100,240);
@define-color video rgb(200,200,0);
@define-color midi rgb(200,0,50);
@define-color graphview-link #808080;
.audio {
background: @audio;
color: black;
}
.video {
background: @video;
color: black;
}
.midi {
background: @midi;
color: black;
}
graphview {
background: @text_view_bg;
}