48 lines
1.5 KiB
HTML
48 lines
1.5 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Palette</title>
|
|
|
|
<style>
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
height: 100vh;
|
|
}
|
|
body > ul {
|
|
margin: 0 auto;
|
|
padding: 0;
|
|
list-style-type: none;
|
|
max-width: 300px;
|
|
height: 100%;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-content: center;
|
|
align-items: center;
|
|
gap: .2rem;
|
|
flex-wrap: wrap;
|
|
}
|
|
li {
|
|
aspect-ratio: 1;
|
|
background-color: var(--background, #eee);
|
|
padding: 3rem;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<ul>
|
|
<li style="--background:#efefef" title="Background"></li>
|
|
<li style="--background:#1e1e1e" title="Text"></li>
|
|
<li style="--background:#0f0f0f" title="Text variant"></li>
|
|
<li style="--background:#C2B280" title="Primary"></li>
|
|
<li style="--background:#D3C7A2" title="Primary light"></li>
|
|
<li style="--background:#BAB298" title="Primary dark"></li>
|
|
<li style="--background:#B3CF99" title="Secondary"></li>
|
|
<li style="--background:#C2D9AD" title="Secondary light"></li>
|
|
<li style="--background:#9FAF8F" title="Secondary dark"></li>
|
|
</ul>
|
|
</body>
|
|
</html> |