-
Notifications
You must be signed in to change notification settings - Fork 4
/
tango.tex
71 lines (66 loc) · 2.28 KB
/
tango.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
65
66
67
68
69
70
71
%
% This file defines a style for code listings, including syntax
% highlighting.
%
\usepackage{xcolor}
\definecolor{tenPercentGrey}{gray}{0.9}
% COLORS (Tango) Mostly by Philip Bunge
% http://pbunge.crimson.ch/
\definecolor{White}{gray}{0.9}
\definecolor{Black}{gray}{0.0}
\definecolor{LightButter}{rgb}{0.98,0.91,0.31}
\definecolor{LightOrange}{rgb}{0.98,0.68,0.24}
\definecolor{LightChocolate}{rgb}{0.91,0.72,0.43}
\definecolor{LightChameleon}{rgb}{0.54,0.88,0.20}
\definecolor{LightSkyBlue}{rgb}{0.45,0.62,0.81}
\definecolor{LightPlum}{rgb}{0.68,0.50,0.66}
\definecolor{LightScarletRed}{rgb}{0.93,0.16,0.16}
\definecolor{Butter}{rgb}{0.93,0.86,0.25}
\definecolor{Orange}{rgb}{0.96,0.47,0.00}
\definecolor{Chocolate}{rgb}{0.75,0.49,0.07}
\definecolor{Chameleon}{rgb}{0.45,0.82,0.09}
\definecolor{SkyBlue}{rgb}{0.20,0.39,0.64}
\definecolor{Plum}{rgb}{0.46,0.31,0.48}
\definecolor{ScarletRed}{rgb}{0.80,0.00,0.00}
\definecolor{DarkButter}{rgb}{0.77,0.62,0.00}
\definecolor{DarkOrange}{rgb}{0.80,0.36,0.00}
\definecolor{DarkChocolate}{rgb}{0.56,0.35,0.01}
\definecolor{DarkChameleon}{rgb}{0.30,0.60,0.02}
\definecolor{DarkSkyBlue}{rgb}{0.12,0.29,0.53}
\definecolor{DarkPlum}{rgb}{0.36,0.21,0.40}
\definecolor{DarkScarletRed}{rgb}{0.64,0.00,0.00}
\definecolor{Aluminium1}{rgb}{0.93,0.93,0.92}
\definecolor{Aluminium2}{rgb}{0.82,0.84,0.81}
\definecolor{Aluminium3}{rgb}{0.73,0.74,0.71}
\definecolor{Aluminium4}{rgb}{0.53,0.54,0.52}
\definecolor{Aluminium5}{rgb}{0.33,0.34,0.32}
\definecolor{Aluminium6}{rgb}{0.18,0.20,0.21}
%%% LISTINGS
\usepackage{listings}
\lstset{
backgroundcolor=\color{tenPercentGrey}, %
basicstyle=\color{Black}\ttfamily{}, %
keywordstyle=[1]\color{DarkSkyBlue}, %
keywordstyle=[2]\color{DarkScarletRed}, %
keywordstyle=[3]\bfseries{}, %
keywordstyle=[4]\color{DarkPlum}, %
keywordstyle=[5]\color{SkyBlue}, %
commentstyle=\color{Aluminium4}, %
stringstyle=\color{Chocolate}, %
identifierstyle=\color{Black}, %
emphstyle=\color{Black}, %
numbers=left, %
stepnumber=1, %
frame=tb, %
captionpos=b, %
lineskip=\smallskipamount{}, %
aboveskip=\bigskipamount{}, %
belowskip=\medskipamount{}, %
commentstyle=\itshape\small{}, %
tabsize=2, %
breaklines=false, %
rulecolor=\color{Black!30}, %
showspaces=false, %
showstringspaces=false, %
showtabs=false, %
} % chktex 6