18 lines
830 B
HTML
18 lines
830 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Chat Overlay - Dark Purple</title>
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap" rel="stylesheet">
|
|
<link rel="stylesheet" href="/static/overlay-dark-purple.css">
|
|
</head>
|
|
<body>
|
|
<div class="chat-container">
|
|
<div class="chat-message"><span class="username">Streamer:</span> This is the dark purple theme!</div>
|
|
<div class="chat-message"><span class="username">PurpleHaze:</span> Very cool, feels like Twitch!</div>
|
|
<div class="chat-message"><span class="username">NightBot:</span> Welcome to the channel!</div>
|
|
</div>
|
|
</body>
|
|
</html> |