From bc61d087810b7dc2bbf556715dff32e14d3dc091 Mon Sep 17 00:00:00 2001 From: rei Date: Thu, 11 Jul 2024 19:31:12 +0200 Subject: [PATCH] darkmode looks kinda bad on sogo --- templates/verification_email.html | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/templates/verification_email.html b/templates/verification_email.html index 15c4720..0fa6550 100644 --- a/templates/verification_email.html +++ b/templates/verification_email.html @@ -10,17 +10,17 @@ font-family: Arial, sans-serif; margin: 0; padding: 0; - background-color: #121212; - color: #ffffff; + background-color: #f5f5f5; + color: #333333; } .container { max-width: 600px; margin: 30px auto; - background-color: #1e1e1e; + background-color: #ffffff; padding: 20px; border-radius: 10px; - box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); + box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); text-align: center; } @@ -30,14 +30,14 @@ } p { - color: #cccccc; + color: #666666; line-height: 1.6; margin-bottom: 20px; } .hash { display: inline-block; - background-color: #333333; + background-color: #eeeeee; padding: 10px 20px; border-radius: 5px; font-family: monospace; @@ -45,11 +45,10 @@ user-select: all; transition: background-color 0.3s; margin: 10px 0; - color: #ffffff; } .hash:hover { - background-color: #444444; + background-color: #dddddd; } .footer { @@ -58,7 +57,7 @@ font-size: 12px; color: #aaaaaa; margin-top: 20px; - border-top: 1px solid #333333; + border-top: 1px solid #dddddd; } .footer a {