-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplot_style.mplstyle
30 lines (26 loc) · 1.33 KB
/
plot_style.mplstyle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# demo_syle.mplstyle# Set figure size to 5x4 inches with white background
# Figure
figure.figsize: 6, 4
figure.facecolor: white # figure facecolor# Change to cyan, magenta, yellow and black color palette
figure.titlesize: 14
figure.titleweight: bold
# Axes
axes.prop_cycle: cycler('color', ["#27aeef", "#ea5545", "#b33dc6", "#ef9b20", "#87bc45"])# Remove top and right spines
#axes.prop_cycle: cycler('color', ["#82c8f0", "#f5a5c8", "#ffdca5", "#7dcdbe", "#c8c8c8", "#cf286f"])
axes.spines.left: True # display axis spines
axes.spines.bottom: True
axes.spines.top: True
axes.spines.right: True # Both axis tick customisations
axes.grid: True
# Ticks
xtick.direction: out # direction: {in, out, inout}
ytick.direction: out # direction: {in, out, inout}
xtick.major.width: 1 # major tick width in points
ytick.major.width: 1 # major tick width in points
xtick.labelsize: medium # fontsize of the tick labels
ytick.labelsize: medium # fontsize of the tick labels# Change font and font size of title and both axis labels
# Font
font.family: Arial
font.size: 12.0
axes.titlesize: x-large # fontsize of the axes title
axes.labelsize: large # fontsize of the x and y labels