|
From: Norwid B. <nb...@ya...> - 2022-06-22 10:02:51
|
Emanuel Berg <in...@da...> wrote: > How do I get a bright-on-theme? I did 'set term png background > rgb 'black'' but then how do I do everything else bright? Like "black", there is "white", i.e. an instruction like ``` set term pngcairo background rgb "white" ``` to expand all over the canvas*) equally is possible. *) If your aim is to alter the representation only within the plot, but not on the caption, legend, etc, you still could put a rectangle behind (back) the plot. As a verbose minimal working example: ``` set terminal pngcairo set output "test.png" set object 1 rect from graph 0, graph 0 to graph 1, graph 1 back set object 1 rect fc rgb "gray" fillstyle solid 1.0 plot sin(x) ``` With regards |