Skip to content

Instantly share code, notes, and snippets.

@tetsuok
Created May 8, 2012 22:26
Show Gist options
  • Star 11 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tetsuok/2639931 to your computer and use it in GitHub Desktop.
Save tetsuok/2639931 to your computer and use it in GitHub Desktop.
Code to change colors of various components in Gnuplot
# Change colors of elements in Gnuplot
# change a color of border.
set border lw 3 lc rgb "white"
# change text colors of tics
set xtics textcolor rgb "white"
set ytics textcolor rgb "white"
# change text colors of labels
set xlabel "X" textcolor rgb "white"
set ylabel "Y" textcolor rgb "white"
# change a text color of key
set key textcolor rgb "white"
@sharegrams
Copy link

Appreciate it

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment