summaryrefslogtreecommitdiff
path: root/support/latexindent/documentation/logo.tex
blob: d80dfec7213d814551604ee3e50c18c6664701b3 (plain)
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
% arara: pdflatex
%
% to create the black and white logo:
%       convert -density 1000 -colorspace GRAY logo.pdf logo-bw.pdf
\documentclass[border=1mm]{standalone}

\usepackage{tikz}
\usetikzlibrary{matrix}
\definecolor{harvestgold}{cmyk}{0.00, 0.05, 0.51, 0.07}  %EDE275
\definecolor{cmhgold}{cmyk}{0,0.178,0.909,0.008}         %FDD017
\definecolor{bakeoffblue}{cmyk}{0.24, 0.00, 0.02, 0.18}  %9fd2cd
\definecolor{bakeoffgreen}{cmyk}{0.30, 0.00, 0.20, 0.29} %80b692
\definecolor{burntorange}{cmyk}{0.00, 0.41, 1.00, 0.04}
\begin{document}
\begin{tikzpicture}[logo/.style={draw=blue,circle,fill=white}]
	\matrix{
		\node[logo,dash pattern=on .5pt off 1.0pt,thick,draw=purple!75!white]{}; & \node[logo,draw=burntorange]{};                                  \\
		\node[logo,fill,draw=bakeoffgreen,fill=bakeoffblue]{};                           & \node[logo,double,draw=cmhgold,fill=harvestgold]{};\\};
\end{tikzpicture}
\end{document}

% for reference, the following puts the GitHub logo in the background; also needs
% \usetikzlibrary{backgrounds}
\pagecolor{white}
\begin{tikzpicture}[logo/.style={draw=blue,circle,fill=none,fill opacity=0.75}]
	\matrix{%
		\node[logo,dash pattern=on .5pt off 1.0pt,thick,draw=purple!75!white]{}; & \node[logo,draw=burntorange]{};                                  \\
		\node[logo,fill,draw=bakeoffgreen,fill=bakeoffblue]{};                           & \node[logo,double,draw=cmhgold,fill=harvestgold]{};\\};
	\begin{scope}[on background layer]
		%\node [yshift=0.01em,xshift=0.07em] {\resizebox{1cm}{!}{\color{gray!50!white}\faGithub}};
		\node {\resizebox{1cm}{!}{\color{gray!25!white}\faGithub}};
	\end{scope}
\end{tikzpicture}