Skip to content

Commit 85c102a

Browse files
authored
v?.??
1 parent ad5e2fb commit 85c102a

1 file changed

Lines changed: 33 additions & 0 deletions

File tree

test.html

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
<!DOCTYPE html>
2+
3+
<html lang="en">
4+
<head>
5+
<meta charset="UTF-8">
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7+
<title>Catppuccin Mocha</title>
8+
<script src="https://cdn.tailwindcss.com"></script>
9+
<script>
10+
tailwind.config = {
11+
theme: {
12+
extend: {
13+
colors: {
14+
base: '#1e1e2e',
15+
text: '#cdd6f4',
16+
lavender: '#b4befe',
17+
}
18+
}
19+
}
20+
}
21+
</script>
22+
</head>
23+
<body class="bg-base min-h-screen flex items-center justify-center px-4">
24+
<div class="text-center">
25+
<h1 class="text-text text-4xl md:text-5xl lg:text-6xl font-bold mb-8">
26+
Mocha
27+
</h1>
28+
<button class="bg-lavender text-base px-8 py-3 rounded-lg font-semibold hover:opacity-90 transition-opacity">
29+
Button
30+
</button>
31+
</div>
32+
</body>
33+
</html>

0 commit comments

Comments
 (0)