/*! debug.css | MIT License | https://gist.github.com/zaydek/6b2e55258734deabbd2b4a284321d6f6 */

/* this will style any element in yellow and pink so you can see it momentarily */
/* eg <div debug>Hello</div> <body debug> */

[debug], [debug] *:not(g):not(path) {
	color:                 hsla(62, 100%, 50%, 0.43) !important;
	background:            hsla(313, 100%, 50%, 0.5) !important;
	outline: solid 0.25rem hsl(58, 96%, 49%) !important;

	box-shadow: none !important;
	filter:     none !important;
}


