report/shared/todo.sty

12 lines
400 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}
\definecolor{notefg}{HTML}{DF4431}
\newcommand{\qtodo}[1]{\colorbox{todobg}{\textcolor{todofg}{#1}}}
\newcommand{\todo}[1]{\qtodo{\textbf{TODO:}\.#1}}
\newcommand{\qnote}[1]{\colorbox{notebg}{\textcolor{notefg}{[#1]}}}
\newcommand{\note}[1]{\qnote{\textbf{NOTE:}\.#1}}