Learn practical skills, build real-world projects, and advance your career
%%html
<style>
a:link {color: #1E3A4C !important; font-weight: 600 !important;}
a:visited {color: #1E3A4C !important; font-weight: 600 !important;}
a:hover {color: purple !important; font-weight: 600 !important;}
</style>
from helpers import *
import_all()
plt.style.use('dark_blue_greens.mplstyle')

Defining Colors for Function Use:

# DEFINE PROJECT COLORS --------------------------------------#
very_dark = "#142733"
medium_dark = "#1E3A4C"
light_main = '#DBE5EB'
light_complementary = '#E1C7C2'
dark_font_color = 'black'
light_font_color = 'white'

# Assigning colors to project variables -----------------------#
pretty_label_text = dark_font_color
pretty_label_background = light_complementary
pretty_background = light_main
pretty_text = dark_font_color
bgcolor = light_main
text_color = dark_font_color
innerbackcolor = medium_dark
outerbackcolor = very_dark
fontcolor = light_font_color