Skip to content

Instantly share code, notes, and snippets.

@J-Cake
Created January 31, 2020 10:04
Show Gist options
  • Save J-Cake/54f4874f6e9d10fd9230dfaab02b500e to your computer and use it in GitHub Desktop.
Save J-Cake/54f4874f6e9d10fd9230dfaab02b500e to your computer and use it in GitHub Desktop.
// source https://jsbin.com
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
<style>
:root {
--background: black;
}
#colour {
width: 300px;
height: 200px;
background: var(--background);
}
</style>
</head>
<body>
<div id="colour"></div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment