Skip to content

Instantly share code, notes, and snippets.

@afspies
Last active February 15, 2023 20:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save afspies/10cc93ee84b417a1e53a571790229558 to your computer and use it in GitHub Desktop.
Save afspies/10cc93ee84b417a1e53a571790229558 to your computer and use it in GitHub Desktop.
Draw.io Matplotlib Colorscheme
// Light Mode
{
"customColorSchemes": [[
{"fill": "#2282bc", "stroke": "none"}, // blue
{"fill": "#17c6d5", "stroke": "none"}, // cyan
{"fill": "#c4c526", "stroke": "none"}, // yellow
{"fill": "#e782c9", "stroke": "none"}, // pink
{"fill": "#9e72c5", "stroke": "none"}, // purple
{"fill": "#db2c2d", "stroke": "none"}, // red
{"fill": "#32aa32", "stroke": "none"}, // green
{"fill": "#ff8a0b", "stroke": "none"} // orange
]],
"presetColors": [
"2282bc", "17c6d5", "c6c630", "8a8a8a", "e782c9", "976155",
"9e72c5", "db2c2d", "32aa32", "ff8a0b"
]
}
// Dark Mode
'#8dd3c7' // cyan
'#feffb3' // yellow
'#bfbbd9' // purple
'#fa8174' // red
'#81b1d2' // blue
'#fdb462' // orange
'#b3de69' // green
'#bc82bd' // magenta
'#ccebc4' // light green
'#ffed6f' // yellow 2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment