Hi @kevinbowen,
I ended up with a shell script on dark/light toggle:
...
xf_set () { #xfce
# https://forum.xfce.org/viewtopic.php?pid=77060#p77060
xfconf-query -c "xfce4-terminal" -p "/$1" -s "$2"
}
if [ "$(basename "$0")" = "mode-dark" ]
then
xf_set "color-foreground" "#839496"
xf_set "color-background" "#002b36"
xf_set "color-cursor" "#93a1a1"
xf_set "color-bold" "#93a1a1"
else
xf_set "color-foreground" "#073642"
xf_set "color-background" "#fdf6e3"
xf_set "color-cursor" "#073642"
xf_set "color-bold" "#073642"
fi