aboutsummaryrefslogtreecommitdiff
path: root/app.py
diff options
context:
space:
mode:
Diffstat (limited to 'app.py')
-rw-r--r--app.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/app.py b/app.py
index 20b0a5d..e36d571 100644
--- a/app.py
+++ b/app.py
@@ -24,7 +24,7 @@ TEMPLATE_STR = """<!DOCTYPE html>
<title>lux</title>
</head>
<body style="background-color: {{ background_color }};">
-<h1 style="color: {{ color }};">{{ message }}</h1>
+<h1 style="color: {{ color }}; font-family: monospace">{{ message }}</h1>
<script data-goatcounter="https://test.bunkergate.org/count" async src="https://test.bunkergate.org/count.js"></script>
</body>
</html>
@@ -39,7 +39,7 @@ class RGBColor:
@property
def hex(self) -> str:
- return "#%02x%02x%02x" % (self.red, self.green, self.blue)
+ return "#%02X%02X%02X" % (self.red, self.green, self.blue)
@property
def yit(self) -> int: