UNPKG

195 BJavaScriptView Raw
1export default function outline() {
2 [].forEach.call(document.querySelectorAll('*'), el => {
3 el.style.outline = `1px solid #${(~~(Math.random() * (1 << 24))).toString(16)}`;
4 });
5}