How to add color to GitHub’s README.md file

I have a README.md file for my project underscore-cli, and I want to document the –color flag. Currently, the only way to do this is with a screenshot (which can be stored in the project repository): But screenshots aren’t text, preventing readers from copy/pasting the command in the screenshot. They’re also a pain to create … Read more

SVG fill color transparency / alpha?

Is it possible to set a transparency or alpha level on SVG fill colours? I’ve tried adding two values to the fill tag (changing it from fill=”#044B94″ to fill=”#044B9466″), but this doesn’t work. 7 s 7 You use an addtional attribute; fill-opacity: This attribute takes a decimal number between 0.0 and 1.0, inclusive; where 0.0 … Read more