-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathswatches.html
31 lines (31 loc) · 1.01 KB
/
swatches.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<!DOCTYPE html>
<html lang="en">
<head>
<title>Swatches</title>
<link href="jp.css" rel="stylesheet" type="text/css">
<style>
.swatch {
display: inline-block;
font-weight: lighter;
height: 75px;
line-height: 75px;
margin: 5px;
text-align: center;
text-transform: uppercase;
width: 75px;
}
.swatch > span {
filter: invert(50%);
}
</style>
</head>
<body>
<div class="bg"></div>
<div>
<div class="swatch" style="background-color: #332e2a"><span>332e2a</span></div>
<div class="swatch" style="background-color: #d8b28d"><span>d8b28d</span></div>
<div class="swatch" style="background-color: #e8a25d"><span>e8a25d</span></div>
<div class="swatch" style="background-color: #efe0d1"><span>efe0d1</span></div>
</div>
</body>
</html>