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.
2 parents 3d8da10 + 6319c54 commit 1bd0a69Copy full SHA for 1bd0a69
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");
+ console.group("All colors used in elements on the page: " + window.location.href);
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);
@@ -97,4 +97,4 @@
97
});
98
console.groupEnd("All colors used in elements on the page");
99
100
-})();
+})();
0 commit comments