-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup-colors.tex
64 lines (58 loc) · 1.6 KB
/
setup-colors.tex
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
56
57
58
59
60
61
62
63
64
% DESIGN COLORS
\definecolor{accent}{HTML}{7EBDC2} % accent color
\definecolor{bgcolor}{HTML}{FCFCFF} % background color
\definecolor{bgcolorAlt}{HTML}{ECF1FC} % alternative background color
\definecolor{fgcolor}{HTML}{222244} % foreground/text color
%
\setbeamercolor{normal text}{%
fg=fgcolor,
bg=bgcolor,
}
\setbeamercolor{alerted text}{%
fg=accent,
}
\setbeamercolor{palette primary}{%
use=normal text,
fg=normal text.fg,
bg=bgcolorAlt,%normal text.bg
}
\setbeamercolor{block title}{
bg=bgcolorAlt,
}
\setbeamercolor{block body}{
bg=bgcolorAlt,
}
\setbeamercolor{block title alerted}{%
use={palette primary, alerted text},
fg=palette primary.bg,
bg=alerted text.fg
}
\setbeamercolor{block title example}{%
use={block title, alerted text},
bg=block title.bg,
fg=alerted text.fg
}
%
\pgfplotsset{legend style={fill=bgcolor,draw=fgcolor}}
% PLOT COLORS
%% Paul Tol High Contrast
\definecolor{plot0}{HTML}{004488}
\definecolor{plot1}{HTML}{DDAA33}
\definecolor{plot2}{HTML}{BB5566}
\definecolor{plot3}{HTML}{000000}
\definecolor{plot4}{HTML}{AAAAAA}
%% Paul Tol Vibrant
%\definecolor{plot0}{HTML}{EE7733}
%\definecolor{plot1}{HTML}{0077BB}
%\definecolor{plot2}{HTML}{33BBEE}
%\definecolor{plot3}{HTML}{EE3377}
%\definecolor{plot4}{HTML}{CC3311}
%\definecolor{plot5}{HTML}{009988}
%\definecolor{plot6}{HTML}{BBBBBB}
\pgfplotscreateplotcyclelist{lineplot cycle}{ %
{plot0, mark=*, thick, mark options=solid},
{plot1, mark=triangle*, thick, mark options=solid},
{plot2, mark=square*, thick, mark options=solid},
{plot3, mark=diamond*, thick, mark options=solid},
{plot4, mark=pentagon*, thick, mark options=solid},
}