Answers for "rgb in python"

3

simple colours python

pip install simple-colors

from simple_colors import *

print(green('hello'))
print(green('hello', 'bold'))
print(green('hello', ['bold', 'underlined']))
Posted by: Guest on March-30-2020
0

rgb color python

1
2
3
import rhinoscriptsytnax as rs

color1 = rs.CreateColor(128, 128, 128) # Creates a medium grey color.
Posted by: Guest on June-23-2021

Python Answers by Framework

Browse Popular Code Answers by Language