aboutsummaryrefslogtreecommitdiff
path: root/app.py
diff options
context:
space:
mode:
authorMichael McVady <michaelm@telnyx.com>2025-03-13 20:56:07 -0500
committerMichael McVady <michaelm@telnyx.com>2025-03-13 20:56:07 -0500
commitaa879bc6e66c7d85462026d03ddbf6a972699db3 (patch)
tree60e5f03fd2673b407d0e3fa976f94ebbb1cc6bc2 /app.py
parent76074b58a079c5b9a50a1ddec781a6a526b26684 (diff)
Styling nits
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: