By default, renpy.input text is yellow. How can I change that color? Whoops, here's my code, too. It's after the start label in the script.rpy.
Code: Select all
$ jun = renpy.input("Please type your name and hit enter, or just hit enter to go with the default name.", length=10) or "Jun"
play sound "sfxsuccess.mp3"
"Thank you, [jun]! Have fun."I have a feeling it goes into the input code on the screens.rpy page but....
Code: Select all
screen input:
window style "input_window":
has vbox
text prompt style "input_prompt"
input id "input" style "input_text"
