palette_timetk()
The function palette_timetk
returns a dictionary of color codes for various colors in the timetk theme.
- blue = β#2c3e50β, # blue
- red = β#e31a1cβ, # red
- green = β#18BC9Cβ, # green
- yellow = β#CCBE93β, # yellow
- steel_blue = β#a6cee3β, # steel_blue
- navy_blue = β#1f78b4β, # navy_blue
- light_green = β#b2df8aβ, # light_green
- pink = β#fb9a99β, # pink
- light_orange = β#fdbf6fβ, # light_orange
- orange = β#ff7f00β, # orange
- light_purple = β#cab2d6β, # light_purple
- purple = β#6a3d9aβ # purple
Returns
The function palette_timetk returns a dictionary containing color |
names as keys and their corresponding hexadecimal color codes as values: |
Examples
import pytimetk as tk
tk.palette_timetk()
{'blue': '#2c3e50',
'red': '#e31a1c',
'green': '#18BC9C',
'yellow': '#CCBE93',
'steel_blue': '#a6cee3',
'navy_blue': '#1f78b4',
'light_green': '#b2df8a',
'pink': '#fb9a99',
'light_orange': '#fdbf6f',
'orange': '#ff7f00',
'light_purple': '#cab2d6',
'purple': '#6a3d9a'}