Set a page's favicon to a solid color. favicolor.ima.computer
var favicolor = require('favicolor');
var icon = document.querySelector('[rel=icon]');
favicolor(icon, 'red');
With npm do:
$ npm install favicolor
favicolor
is designed to work in the browser via a bundlers such as browserify and as a stand-alone script:
<script src="http://wzrd.in/standalone/favicolor@latest"></script>
var favicolor = require('favicolor');
icon
is the favicon DOM element. The color can be specified by passing the RGB values as individual arguments, by passing an array containing the RGB values as the second argument, or by passing a string as the second argument. In the latter case you are free to use any valid color string, e.g. 'red', '#ff0000', 'rgb(255, 0, 0)', etc. Note: This method temporarily removes the specified element to work around a quirk in Firefox.
Examples:
favicolor(icon, 68, 68, 68);
favicolor(icon, [13, 37, 42]);
favicolor(icon, 'cyan');
favicolor(icon, '#bada55');
favicolor(icon, 'hsla(170, 50%, 45%, 1)');