summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjulian laplace <julescarbon@gmail.com>2026-03-27 15:05:31 +0100
committerjulian laplace <julescarbon@gmail.com>2026-03-27 15:05:31 +0100
commite59842e76962c309bdbfc5c65bed2295f4bbf278 (patch)
tree269ccd70e44554785e18437fdcde0a15f46a8c0f
parent95147b581608f089e5ac54e7327dcad1e2578a5f (diff)
color schema
-rw-r--r--bucky/app/site.js8
-rw-r--r--public/assets/css/bucky.css5
2 files changed, 11 insertions, 2 deletions
diff --git a/bucky/app/site.js b/bucky/app/site.js
index de42155..2fe1bcc 100644
--- a/bucky/app/site.js
+++ b/bucky/app/site.js
@@ -83,8 +83,12 @@ site.init = function () {
server = http.createServer(app).listen(process.env.PORT || 5000, function () {
console.log(
- "Bucky listening at http://" + process.env.HOST_NAME + ":%s",
- server.address().port,
+ "\n",
+ "> Bucky listening at http://" +
+ process.env.HOST_NAME +
+ ":" +
+ server.address().port,
+ "\n",
);
});
diff --git a/public/assets/css/bucky.css b/public/assets/css/bucky.css
index 10f5059..e084a5f 100644
--- a/public/assets/css/bucky.css
+++ b/public/assets/css/bucky.css
@@ -28,6 +28,11 @@ body.black {
background: #211;
color: #eee;
}
+@media (prefers-color-scheme: dark) {
+ .profile_meta td {
+ color: #eee !important;
+ }
+}
small {
font-size: 10px;