- Jul 3, 2021
- 4,454
- 21,802
I'm not certain what you mean? When I define the character's colour in these I use:define c = Character('Christin', color= "#ee71f0")
Does anyone know about renpy? and how to open the small color palette between color= "?
Python:
define s = Character("Sophia", color="#ff52d4")
You must be registered to see the links
You can also just use three characters. Like if I want a bright red, I will use color="#F00". The first character represents the value for Red, from 0-15 (in HEX digits, which go 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, A, B, C, D, E, F), followed by the value for Green and the value for Blue. If you wanted a medium green, you could have color="#080", or a dark blue could be "#004" etc.