Page 1 of 1

[SOLVED] Adding Outlines to the TINY gui text elements?

Posted: Tue Apr 27, 2021 12:35 am
by Semicolonkid
You know the "Back - History - Skip - Auto - Save (etc)" tiny options along the bottom of a default Ren'Py game? Is there a way to give those text elements an outline? I've been searching for a while, and I'm just not sure what style parameter would do it. I know that this will change their color:

Code: Select all

define gui.idle_small_color = u'#111111'
But that's it.

EDIT: *SOLVED IT!!!*
Turns out, all you need to do, preferably in gui.rpy, is this:

Code: Select all

define gui.quick_button_text_outlines = [ (2, "#00000090", 0, 0) ]