1pip install simple-colors
2
3from simple_colors import *
4
5print(green('hello'))
6print(green('hello', 'bold'))
7print(green('hello', ['bold', 'underlined']))
11
22
33
4import rhinoscriptsytnax as rs
5
6color1 = rs.CreateColor(128, 128, 128) # Creates a medium grey color.
7