Make theme less bad

This commit is contained in:
Helix K
2026-04-29 23:39:33 -05:00
parent 6dd3371464
commit 0bfe24d4f9
2 changed files with 27 additions and 11 deletions
+25 -11
View File
@@ -1,32 +1,44 @@
::selection { ::selection {
background-color: #eeadb7; background-color: #2563eb;
color: #1e1e2e; color: #fff;
} }
::-moz-selection { ::-moz-selection {
background-color: #eeadb7; background-color: #2563eb;
color: #1e1e2e; color: #fff;
} }
body { body {
font-family: 'Adwaita Mono', monospace; font-family: sans-serif;
padding-left: 20px; padding-left: 20px;
padding-top: 10px; padding-top: 10px;
margin: 0; margin: 0;
max-width: 1000px; padding: 0;
background-color: #1e1e2e; background-color: #000;
color: #eeadb7; color: #b1b8c0;
} }
.green, .green::selection, .green::-moz-selection { #wraps {
margin: 0 auto;
width: 80%;
padding-top: 10px;
}
.green,
.green::selection,
.green::-moz-selection {
color: #5cdd8b; color: #5cdd8b;
} }
.red, .red::selection, .red::-moz-selection { .red,
.red::selection,
.red::-moz-selection {
color: #dc3545; color: #dc3545;
} }
.grey, .grey::selection, .grey::-moz-selection { .grey,
.grey::selection,
.grey::-moz-selection {
color: #dadada; color: #dadada;
} }
@@ -34,9 +46,11 @@ body {
width: 400px; width: 400px;
height: 20px; height: 20px;
padding: 10px; padding: 10px;
margin-bottom: 10px;
display: flex; display: flex;
align-items: center; align-items: center;
border-radius: 10px; border-radius: 10px;
background-color: #040407;
} }
.service p { .service p {
+2
View File
@@ -10,6 +10,7 @@
</head> </head>
<body> <body>
<div id="wraps">
<h2>{{ cfg.web.name }}</h2> <h2>{{ cfg.web.name }}</h2>
{% set services_by_cat = {} %} {% set services_by_cat = {} %}
@@ -40,6 +41,7 @@
</div> </div>
{% endfor %} {% endfor %}
{% endfor %} {% endfor %}
</div>
</body> </body>
</html> </html>