We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb221dc commit 7edcac9Copy full SHA for 7edcac9
snippets/allcolors/allcolors.js
@@ -86,7 +86,7 @@
86
return "background:" + color + ";color:" + color + ";border:1px solid #333;";
87
};
88
89
- console.group("All colors used in elements on the page: " + window.location.href);
+ console.group("Total colors used in elements on the page: " + window.location.href + " are " +allColorsSorted.length);
90
allColorsSorted.forEach(function (c) {
91
console.groupCollapsed("%c %c " + c.key + " " + c.hexValue + " %c(" + c.value.count + " times)",
92
colorStyle(c.key), nameStyle, countStyle);
0 commit comments