blob: 61027c7b2346c91983fd2a63101dc49a214bae48 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<!-- Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ -->
<html style="--COLOR: green; --background: black">
<head>
<style>
div {
background: var(--background);
color: var(--COLOR);
}
</style>
</head>
<body>
<div id="target">test</div>
</body>
</html>
|