-
Notifications
You must be signed in to change notification settings - Fork 77
/
Copy pathdark.mplstyle
52 lines (42 loc) · 1.2 KB
/
dark.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
##################################################################################
## Simulation Dark Mode - By Chris / Poppahorse (https://github.com/poppahorse) ##
##################################################################################
# To check more avaialble options see:
# https://matplotlib.org/tutorials/introductory/customizing.html
text.color : ffffff
# PATCH
patch.facecolor : 202020
# AXES
axes.facecolor : 202020
axes.titlesize : 12
axes.labelsize : 12
axes.edgecolor : (0.1,0.1,0.1) #Normalized RGB colours (from 0 to 1 instead of 0 to 255)
axes.labelcolor : ffffff
axes.linewidth : 1
axes.spines.top : False
axes.spines.right : False
axes.spines.bottom : True
axes.spines.left : True
# GRID
axes.grid : False
grid.alpha : 0.7
grid.linestyle : --
grid.linewidth : 0.6
# LINES
axes.prop_cycle : cycler('color', [ '0046b8', '2464c9', '4d87e3', '7899cf', '8ea1bf']) #hex colours
lines.linewidth : 1.5
lines.markeredgewidth : 0.0
# SCATTER PLOT
scatter.marker : .
# TICKS
xtick.labelsize : 7
xtick.color : ffffff
xtick.direction : in
ytick.labelsize : 7
ytick.color : ffffff
ytick.direction : in
# FIGURE OUTPUT
figure.facecolor : 202020
figure.figsize : 7, 5
#figure.dpi : 72
savefig.dpi : 200