-
Notifications
You must be signed in to change notification settings - Fork 4
/
makieTheme2.jl
55 lines (55 loc) · 1.54 KB
/
makieTheme2.jl
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
52
53
54
55
set_theme!(
rowgap = 5,
colgap = 5,
fontsize = 16,
backgroundcolor = :black, # "#212946",
Axis = (
xgridcolor = :white,
ygridcolor = :white,
backgroundcolor = :black, # "#212946",
xgridstyle=:dash,
ygridstyle=:dash,
xgridwidth=0.35,
ygridwidth=0.35,
xtickalign=0,
ytickalign=0,
xtickcolor = :white,
ytickcolor = :white,
bottomspinecolor = :white,
topspinecolor =:white,
leftspinecolor =:white,
rightspinecolor =:white,
xlabelcolor=:white,
ylabelcolor = :white,
xticklabelcolor = :white,
yticklabelcolor = :white,
xgridvisible = true,
ygridvisible = true),
Colorbar = (
topspinevisible = false,
rightspinevisible = false,
bottomspinevisible = false,
leftspinevisible = false,
width = 12,
height = Relative(4/4),
labelcolor = :white,
ticklabelcolor = :white,
tickalign = 1,
tickcolor = :white,
labelpadding = -5,
ticklabelsize = 16),
Legend = (#titlecolor = :white # not working or missing
tellheight = false,
tellwidth = false,
halign = :right,
valign = :top,
labelsize = 16,
linewidth = 2,
markersize = 7,
margin = (10, 10, 10, 10),
framevisible = true,
framecolor = (:white, 0.25),
bgcolor = (:grey, 0.25),
labelcolor = :white,
titlecolor = :white)
)