diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000..5f9ae96 Binary files /dev/null and b/.DS_Store differ diff --git a/YII_1.mplstyle b/YII_1.mplstyle index 141cc0c..4eefd5c 100755 --- a/YII_1.mplstyle +++ b/YII_1.mplstyle @@ -68,7 +68,7 @@ savefig.pad_inches: 0 path.simplify: True ### Cycler -axes.prop_cycle: cycler(color=['06518E', 'E8BD0F', '3B795E', '009EDB', 'ED1C24', 'C95BCF']) +axes.prop_cycle: cycler(color=['06518E','E8BD0F','3B795E','ED1C24','C95BCF','009EDB']) ### Colormap image.cmap: cividis diff --git a/YII_2.mplstyle b/YII_2.mplstyle index ed97d09..34afafb 100755 --- a/YII_2.mplstyle +++ b/YII_2.mplstyle @@ -68,7 +68,7 @@ savefig.pad_inches: 0 path.simplify: True ### Cycler -axes.prop_cycle: cycler(color=['06518E', 'E8BD0F', '3B795E', '009EDB', 'ED1C24', 'C95BCF']) +axes.prop_cycle: cycler(color=['06518E','E8BD0F','3B795E','ED1C24','C95BCF','009EDB']) ### Colormap image.cmap: cividis diff --git a/YII_beamer_1.mplstyle b/YII_beamer_1.mplstyle index f5d2500..182d13a 100755 --- a/YII_beamer_1.mplstyle +++ b/YII_beamer_1.mplstyle @@ -68,7 +68,7 @@ savefig.pad_inches: 0 path.simplify: True ### Cycler -axes.prop_cycle: cycler(color=['06518E', 'E8BD0F', '3B795E', '009EDB', 'ED1C24', 'C95BCF']) +axes.prop_cycle: cycler(color=['06518E','E8BD0F','3B795E','ED1C24','C95BCF','009EDB']) ### Colormap image.cmap: cividis diff --git a/YII_beamer_2.mplstyle b/YII_beamer_2.mplstyle index 8647d0b..9bcafa1 100644 --- a/YII_beamer_2.mplstyle +++ b/YII_beamer_2.mplstyle @@ -69,7 +69,7 @@ savefig.pad_inches: 0 path.simplify: True ### Cycler -axes.prop_cycle: cycler(color=['06518E', 'E8BD0F', '3B795E', '009EDB', 'ED1C24', 'C95BCF']) +axes.prop_cycle: cycler(color=['06518E','E8BD0F','3B795E','ED1C24','C95BCF','009EDB']) ### Colormap image.cmap: cividis diff --git a/YII_beamer_light_1.mplstyle b/YII_beamer_light_1.mplstyle index 0e9718f..c79585c 100644 --- a/YII_beamer_light_1.mplstyle +++ b/YII_beamer_light_1.mplstyle @@ -68,7 +68,7 @@ savefig.pad_inches: 0 path.simplify: True ### Cycler -axes.prop_cycle: cycler(color=['06518E', 'E8BD0F', '3B795E', '009EDB', 'ED1C24', 'C95BCF']) +axes.prop_cycle: cycler(color=['06518E','E8BD0F','3B795E','ED1C24','C95BCF','009EDB']) ### Colormap image.cmap: cividis diff --git a/YII_beamer_light_2.mplstyle b/YII_beamer_light_2.mplstyle index 1233749..9183c8e 100644 --- a/YII_beamer_light_2.mplstyle +++ b/YII_beamer_light_2.mplstyle @@ -68,7 +68,7 @@ savefig.pad_inches: 0 path.simplify: True ### Cycler -axes.prop_cycle: cycler(color=['06518E', 'E8BD0F', '3B795E', '009EDB', 'ED1C24', 'C95BCF']) +axes.prop_cycle: cycler(color=['06518E','E8BD0F','3B795E','ED1C24','C95BCF','009EDB']) ### Colormap image.cmap: cividis diff --git a/YII_light_1.mplstyle b/YII_light_1.mplstyle index cd0acc4..e689819 100755 --- a/YII_light_1.mplstyle +++ b/YII_light_1.mplstyle @@ -68,7 +68,7 @@ savefig.pad_inches: 0 path.simplify: True ### Cycler -axes.prop_cycle: cycler(color=['06518E', 'E8BD0F', '3B795E', '009EDB', 'ED1C24', 'C95BCF']) +axes.prop_cycle: cycler(color=['06518E','E8BD0F','3B795E','ED1C24','C95BCF','009EDB']) ### Colormap image.cmap: cividis diff --git a/YII_light_2.mplstyle b/YII_light_2.mplstyle index f42e75f..b937a86 100755 --- a/YII_light_2.mplstyle +++ b/YII_light_2.mplstyle @@ -68,7 +68,7 @@ savefig.pad_inches: 0 path.simplify: True ### Cycler -axes.prop_cycle: cycler(color=['06518E', 'E8BD0F', '3B795E', '009EDB', 'ED1C24', 'C95BCF']) +axes.prop_cycle: cycler(color=['06518E','E8BD0F','3B795E','ED1C24','C95BCF','009EDB']) ### Colormap image.cmap: cividis diff --git a/yii_test.py b/yii_test.py new file mode 100644 index 0000000..798d9e8 --- /dev/null +++ b/yii_test.py @@ -0,0 +1,18 @@ +import matplotlib.pyplot as plt + + +def test_colors(): + x = range(10) + y = [1]*10 + fig, ax = plt.subplots(1) + for i in x: + ax.scatter(x[i],y[i], s=100) + + +test_colors() + +plt.style.use("YII_1") + +test_colors() + +plt.show()