blob: ffde227664ae769e249a96f3f7de22d1e805f317 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
\documentclass{scrartcl}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[dvipsnames]{xcolor}
\usepackage[object=vectorian]{pgfornament}
\usetikzlibrary{shapes.geometric,calc}
\definecolor{fondpaille}{cmyk}{0,0,0.1,0}
\begin{document}
\pagecolor{fondpaille}
\color{Maroon}
\begin{tikzpicture}
\node (A) at (0,0) {};
\node (B) at (0:6) {};
\node (C) at (60:6) {};
\path [fill=Maroon!10,fill opacity=.4,text opacity=1]
(A.center) to [ornament=87] (B.center) to [ornament=87]
(C.center) to [ornament=87] (A.center);
\end{tikzpicture}
\end{document}
|