colors.tex 341 B

123456789101112131415
  1. \documentclass[a4paper]{scrartcl}
  2. \usepackage[utf8]{inputenc}
  3. \usepackage{xcolor}
  4. \definecolor{foo}{HTML}{EFF5F9}
  5. \definecolor{magenta}{HTML}{FF00FF}
  6. \begin{document}
  7. This is the \textcolor{foo}{foo color}. And here is an
  8. \textcolor[HTML]{DFECF7}{inline example}.
  9. I like \textcolor{magenta}{\textbf{Magenta}}.
  10. \end{document}