This post mentioned that when using PdfLaTeX, One can recolor the blacks of an image to any color using \color.
The Goal: Create an image (preferably scalable(svg)) that can be color adjusted inside LaTeX.
So I created a small black svg vector image in inkscape and saved it as a PDF (with the "PDF+LaTeX", "PDF 1.5" and "use exported object's size" settings), but when I include it with color it stays black...
\definecolor{accent}{RGB}{0, 130, 240} %blue
\color{accent} \includegraphics[height=9pt,clip]{location}
So how do I make a svg image color adjustable in LaTeX?
fillandstrokecommands amongst other things. You should adjust the colours outside of latex. – Andrew Swann Feb 17 '17 at 12:29\colorcommand only works at the time the object is created. It does not act on an object that was already created. – Feb 17 '17 at 15:17But when I convert it to pdf and try to includegraphics it now shows nothing when I include it (makes sense since the color of the object is nothing) but what settings do I need then so I can adjust it in LaTeX?
– LinG Feb 20 '17 at 09:34