UNPKG

visbug-lib

Version:

<p align="center"> <img src="./assets/visbug.png" width="300" height="300" alt="visbug"> <br> <a href="https://www.npmjs.org/package/visbug"><img src="https://img.shields.io/npm/v/visbug.svg?style=flat" alt="npm latest version number"></a> <a href

21 lines (19 loc) 518 B
export const commands = [ 'skeleton', 'outline', ] export default async function() { const styles = ` *:not(path):not(g) { color: hsl(0, 0%, 0%) !important; text-shadow: none !important; background: hsl(0, 0%, 100%) !important; outline: 1px solid hsla(0, 0%, 0%, 0.5) !important; border-color: transparent !important; box-shadow: none !important; } ` const style = document.createElement('style') style.textContent = styles document.head.appendChild(style) }