import matplotlib.pyplot as plt from matplotlib.colors import to_hex plt.style.use("ggplot") months = ["Jan", "Feb", "Mar", "Apr", "May"] planned = [4, 5, 6, 7, 8] actual = [3, 6, 5, 8, 9] palette = { "line": "tab:blue", "marker_face": "#ffbf00", "marker_edge": (0.0, 0.2, 0.4), "bars": "#2ca02c", "fill": (0.2, 0.6, 0.9, 0.25), }