18 lines
860 B
HTML
18 lines
860 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Chat Overlay - Bright Green</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="{{ url_for('static', path='css/overlay-bright-green.css') }}">
|
|
</head>
|
|
<body>
|
|
<div class="chat-container">
|
|
<div class="chat-message"><span class="username">Streamer:</span> This is the bright green theme!</div>
|
|
<div class="chat-message"><span class="username">VerdantViewer:</span> Looks so fresh and clean!</div>
|
|
<div class="chat-message"><span class="username">NightBot:</span> Welcome to the channel!</div>
|
|
</div>
|
|
</body>
|
|
</html> |