Skip to content

Instantly share code, notes, and snippets.

@rawlik
Created June 10, 2017 12:50
Show Gist options
  • Save rawlik/744b70099fbd8cc5256a76486c5c759e to your computer and use it in GitHub Desktop.
Save rawlik/744b70099fbd8cc5256a76486c5c759e to your computer and use it in GitHub Desktop.
Brighten any color in matplotlib
def brighten(color, v):
return np.array(matplotlib.colors.to_rgb(color)) ** (1 - v)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment