Might also be a stupid question but how do you like change the color of the selected name?? sorry bro im new to this entire thing
Viewing post in Character Select Screen for Ren'Py comments
No such thing as stupid questions!
Are you asking about the name as it's displayed on this character selection screen, while it's being edited? Those colors are set here, specifically the "hover_color" and "color" fields:
Based on your screenshot, though, it looks like you may be asking about the name as it's displayed once you start your game? You can set custom colors for character's names when defining a character, using "who_color". Here's a link that explains more:
https://www.renpy.org/doc/html/dialogue.html#defining-character-objects
So for instance, you could define the player with the following, and set whatever color you wanted.
define pl = Character("[pname]", who_color="#FFFFFF")
Let me know if this helps, if I misunderstood or you need more information.