matplotlib bar graph colors code example
Example 1: change graph colors python matplotlib
plt.plot([values], color='color')
Example 2: pyplot bar plot colur each bar custom
plt.bar(y_pos, height, color=['black', 'red', 'green', 'blue', 'cyan'])
plt.plot([values], color='color')
plt.bar(y_pos, height, color=['black', 'red', 'green', 'blue', 'cyan'])