I have a script that uses zenity package with the command :
Code:
zenity --question --title "Title" --text="This is a test text."
Which displays this :
I don't understand why the text background is blue.
I would like to change the text background color, so the text would be white with a black background (as the title).
Tried using this but with no changes :
Code:
zenity --question --title "Title" --text="<span color=\"white\">This is a test text.</span>"
and
Code:
zenity --question --title "Title" --text="<span background=\"white\">This is a test text.</span>"
How can I have a white text on a black background? Is it even doable on maemo's zenity version?
I have a script that uses zenity package with the command :
I don't understand why the text background is blue.
I would like to change the text background color, so the text would be white with a black background (as the title).
Tried using this but with no changes :