1
mirror of https://invent.kde.org/network/falkon.git synced 2024-09-21 17:52:10 +02:00

VerticalTabs: Add dark theme support on group page

Signed-off-by: Juraj Oravec <jurajoravec@mailo.com>
This commit is contained in:
Juraj Oravec 2023-04-02 22:48:22 +02:00
parent 8a47ee45fd
commit c1ac4bcc35
Signed by: SGOrava
GPG Key ID: 13660A3F1D9F093B
2 changed files with 19 additions and 1 deletions

View File

@ -2,7 +2,18 @@
<head> <head>
<link rel="shortcut icon" href="%FAVICON%"> <link rel="shortcut icon" href="%FAVICON%">
<style> <style>
input { margin: 15% 25%; min-width: 50%; } input { margin: 15% 25%; min-width: 50%; border: 1px solid; }
@media (prefers-color-scheme: light) {
html, body {background: #dddddd;color: #525c66;}
input {border-color: #babcb8;}
input:focus {border-color: #579eea;}
}
@media (prefers-color-scheme: dark) {
html, body {background: #070709;color: #dddddd;}
input {background-color: #070709;color: white;border-color: #555;}
input:focus {border-color: #1a4ba4;}
}
</style> </style>
</head> </head>
<body> <body>

View File

@ -3,6 +3,13 @@
<title>%NAME%</title> <title>%NAME%</title>
<style> <style>
h1 { text-align:center; } h1 { text-align:center; }
@media (prefers-color-scheme: light) {
html, body {background: #dddddd;color: #525c66;}
}
@media (prefers-color-scheme: dark) {
html, body {background: #070709;color: #dddddd;}
}
</style> </style>
</head> </head>
<body> <body>