CSS hexadecimal RGBA?

I know you can write … background-color: #ff0000; … if you want something that is red. And you can write … background-color: rgba(255, 0, 0, 0.5); … if you want something red and translucent. Is there any terse way of writing partially transparent colors in hexadecimal? I want something like: background-color: #ff000088; <— the 88 … Read more

How to echo with different colors in the Windows command line [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers. Want to improve this question? Update the question so it’s on-topic for Stack Overflow. Closed 11 months ago. The community reviewed whether to reopen this question 6 months ago and left it closed: Original close reason(s) were not resolved Improve … Read more

Can I change the color of Font Awesome’s icon color?

I have to wrap my icon within an <a> tag for some reason. Is there any possible way to change the color of a font-awesome icon to black? or is it impossible as long as it wrapped within an <a> tag? Font awesome is supposed to be font not image, right? <a href=”https://stackoverflow.com/users/edit”><i class=”icon-cog”></i> Edit … Read more

Algorithm to randomly generate an aesthetically-pleasing color palette [closed]

Closed. This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed 5 years ago. Improve this question I’m looking for a simple algorithm to generate a large number of random, aesthetically pleasing … Read more

jQuery animate backgroundColor

I am trying to animate a change in backgroundColor using jQuery on mouseover. I have checked some example and I seem to have it right, it works with other properties like fontSize, but with backgroundColor I get and “Invalid Property” js error. The element I am working with is a div. $(“.usercontent”).mouseover(function() { $(this).animate({ backgroundColor: … Read more