Add "Random" for 255 colors mode
Thus we can specify "random" for 8 colors mode, or "Random" for 255 colors.
This commit is contained in:
parent
811ef56bcb
commit
eba7c1462d
2 changed files with 10 additions and 2 deletions
|
|
@ -50,7 +50,7 @@ def colorin( text, color = "red", style = "normal" ):
|
|||
stop = "\033[0m"
|
||||
|
||||
# Convert the style code
|
||||
if style == "random":
|
||||
if style == "random" or style == "Random":
|
||||
style = random.choice(list(styles.keys()))
|
||||
else:
|
||||
assert( style in styles)
|
||||
|
|
@ -62,6 +62,11 @@ def colorin( text, color = "red", style = "normal" ):
|
|||
color_code = random.choice(list(colors.values()))
|
||||
color_code = str( 30 + color_code )
|
||||
|
||||
elif color == "Random":
|
||||
mode = 256
|
||||
color_nb = random.randint(0,255)
|
||||
color_code = str( color_nb )
|
||||
|
||||
elif color == "rainbow":
|
||||
global rainbow_idx
|
||||
mode = 8
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue