report/shared/todo.sty

12 lines
399 B
Plaintext
Raw Normal View History

2018-07-31 12:27:12 +02:00
\RequirePackage{xcolor}
\definecolor{todobg}{HTML}{FF5F00}
\definecolor{todofg}{HTML}{3700DA}
\definecolor{notebg}{HTML}{87C23C}
2018-08-01 17:34:32 +02:00
\definecolor{notefg}{HTML}{BC3423}
2018-07-31 12:27:12 +02:00
\newcommand{\qtodo}[1]{\colorbox{todobg}{\textcolor{todofg}{#1}}}
2018-08-01 17:34:32 +02:00
\newcommand{\todo}[1]{\qtodo{\textbf{TODO:}\,#1}}
\newcommand{\qnote}[1]{\colorbox{notebg}{\textcolor{notefg}{#1}}}
2018-08-29 22:14:26 +02:00
\newcommand{\tnote}[1]{\qnote{\textbf{NOTE:}\,#1}}