Question:
How can I modify the following code so that it takes 2 more arguments (background color, and font color)?
MWE:
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{tikz}
\usetikzlibrary{arrows}
\usetikzlibrary{shapes}
\newcommand*\circled[1]{\tikz[baseline=(char.base)]{
\node[shape=circle,draw,inner sep=2pt] (char) {#1};}}
\begin{document}
\circled{+}
\end{document}
Current Output:
Ideal Output:
\circled{+}{#00d131}{#ffffff} would yield:
FWIW:
I'm open to other suggestions if the above MWE is not the optimum method for such tasks.

