summaryrefslogtreecommitdiff
path: root/resources/admonitions.tex
blob: 5ab78ca586ea8b130e2132a41a5e4f6891d46997 (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
34
35
36
\usepackage{DUStyle}
\definecolor{orangeColor}{RGB}{255, 165, 0}
\definecolor{redColor}{RGB}{211, 38, 38}
\definecolor{blueColor}{RGB}{38, 38, 211}
\definecolor{lightBlueColor}{RGB}{0, 89, 255}
\definecolor{greenColor}{RGB}{38, 211, 38}


\usepackage{fontspec}
\RequirePackage{fontawesome}
% Style pour les avertissements
\createIconifiedDUStyle{warning}{orangeColor}{\faExclamation}{CaviarDreamsFont}
% Style pour les notes
\createIconifiedDUStyle{note}{lightBlueColor}{\faComment}{CaviarDreamsFont}
% Style pour les exercices
\createIconifiedDUStyle{exercice}{greenColor}{\faPencil}{CaviarDreamsFont}

\let\oldttfamily\ttfamily

\newenvironment{DUCLASScode}{%
  \begin{mdframed}[topline=false,%
    bottomline=false,%
    rightline=false,%
    leftline=false,%
    linecolor=black,%
    linewidth=3pt,%
    skipabove=0.5cm,%
    backgroundcolor=black!5]
    %\small
    %\let\ttfamily\DejaVuSansMono
}{%
    \let\ttfamily\oldttfamily
  \end{mdframed}
}