diff options
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: |