-
Notifications
You must be signed in to change notification settings - Fork 7
/
index.html
59 lines (59 loc) · 1.72 KB
/
index.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!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>override-shades example</title>
<link rel="stylesheet" href="./style.css" />
<script async type="module" src="./main.ts"></script>
</head>
<body>
<div
class="
themeable-override
text-themeable-foreground
flex flex-col
container
mx-auto
my-10
text-center
items-center
relative
"
id="container"
>
<div class="absolute top-140">This is overridden by configuration</div>
<div class="color-block bg-themeable-comment-50">
bg-themeable-comment-50
</div>
<div class="color-block bg-themeable-comment-100">
bg-themeable-comment-100
</div>
<div class="color-block bg-themeable-comment-200">
bg-themeable-comment-200
</div>
<div class="color-block bg-themeable-comment-300">
bg-themeable-comment-300
</div>
<div class="color-block bg-themeable-comment-400">
bg-themeable-comment-400
</div>
<div class="color-block bg-themeable-comment-500">
bg-themeable-comment-500
</div>
<div class="color-block bg-themeable-comment-600">
bg-themeable-comment-600
</div>
<div class="color-block bg-themeable-comment-700">
bg-themeable-comment-700
</div>
<div class="color-block bg-themeable-comment-800">
bg-themeable-comment-800
</div>
<div class="color-block bg-themeable-comment-900">
bg-themeable-comment-900
</div>
</div>
</body>
</html>