mirror of
https://github.com/MartinThoma/LaTeX-examples.git
synced 2025-04-24 22:08:04 +02:00
15 lines
341 B
TeX
15 lines
341 B
TeX
|
\documentclass[a4paper]{scrartcl}
|
||
|
\usepackage[utf8]{inputenc}
|
||
|
|
||
|
\usepackage{xcolor}
|
||
|
|
||
|
\definecolor{foo}{HTML}{EFF5F9}
|
||
|
\definecolor{magenta}{HTML}{FF00FF}
|
||
|
|
||
|
\begin{document}
|
||
|
This is the \textcolor{foo}{foo color}. And here is an
|
||
|
\textcolor[HTML]{DFECF7}{inline example}.
|
||
|
|
||
|
I like \textcolor{magenta}{\textbf{Magenta}}.
|
||
|
\end{document}
|