Source code
Revision control
Copy as Markdown
Other Tools
<!-- Any copyright is dedicated to the Public Domain.
<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>