diff options
author | Michael McVady <michaelm@telnyx.com> | 2025-03-13 20:56:07 -0500 |
---|---|---|
committer | Michael McVady <michaelm@telnyx.com> | 2025-03-13 20:56:07 -0500 |
commit | aa879bc6e66c7d85462026d03ddbf6a972699db3 (patch) | |
tree | 60e5f03fd2673b407d0e3fa976f94ebbb1cc6bc2 /app.py | |
parent | 76074b58a079c5b9a50a1ddec781a6a526b26684 (diff) |
Styling nits
Diffstat (limited to 'app.py')
-rw-r--r-- | app.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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: |