forked from Fijxu/anubis-patches
54 lines
1.9 KiB
Diff
54 lines
1.9 KiB
Diff
From 41e56a7922608b27ec50c35591223ea71afedad8 Mon Sep 17 00:00:00 2001
|
|
From: Fijxu <fijxu@nadeko.net>
|
|
Date: Sun, 30 Mar 2025 01:06:20 -0300
|
|
Subject: [PATCH] xess: change default background color
|
|
|
|
---
|
|
web/index_templ.go | 4 ++--
|
|
xess/xess.css | 4 ++--
|
|
2 files changed, 4 insertions(+), 4 deletions(-)
|
|
|
|
diff --git a/web/index_templ.go b/web/index_templ.go
|
|
index 2e3ac49..eb99b3a 100644
|
|
--- a/web/index_templ.go
|
|
+++ b/web/index_templ.go
|
|
@@ -251,7 +251,7 @@ func bench() templ.Component {
|
|
templ_7745c5c3_Var13, templ_7745c5c3_Err = templ.JoinStringErrs("/.within.website/x/cmd/anubis/static/img/pensive.webp?cacheBuster=" +
|
|
anubis.Version)
|
|
if templ_7745c5c3_Err != nil {
|
|
- return templ.Error{Err: templ_7745c5c3_Err, FileName: `index.templ`, Line: 247, Col: 19}
|
|
+ return templ.Error{Err: templ_7745c5c3_Err, FileName: `index.templ`, Line: 148, Col: 19}
|
|
}
|
|
_, templ_7745c5c3_Err = templ_7745c5c3_Buffer.WriteString(templ.EscapeString(templ_7745c5c3_Var13))
|
|
if templ_7745c5c3_Err != nil {
|
|
@@ -264,7 +264,7 @@ func bench() templ.Component {
|
|
var templ_7745c5c3_Var14 string
|
|
templ_7745c5c3_Var14, templ_7745c5c3_Err = templ.JoinStringErrs("/.within.website/x/cmd/anubis/static/js/bench.mjs?cacheBuster=" + anubis.Version)
|
|
if templ_7745c5c3_Err != nil {
|
|
- return templ.Error{Err: templ_7745c5c3_Err, FileName: `index.templ`, Line: 250, Col: 118}
|
|
+ return templ.Error{Err: templ_7745c5c3_Err, FileName: `index.templ`, Line: 151, Col: 118}
|
|
}
|
|
_, templ_7745c5c3_Err = templ_7745c5c3_Buffer.WriteString(templ.EscapeString(templ_7745c5c3_Var14))
|
|
if templ_7745c5c3_Err != nil {
|
|
diff --git a/xess/xess.css b/xess/xess.css
|
|
index 86cbd42..94c7deb 100644
|
|
--- a/xess/xess.css
|
|
+++ b/xess/xess.css
|
|
@@ -33,12 +33,12 @@ main {
|
|
}
|
|
|
|
body {
|
|
- background: #1d2021;
|
|
+ background: #181818;
|
|
color: #f9f5d7;
|
|
}
|
|
|
|
pre {
|
|
- background-color: #3c3836;
|
|
+ background-color: #181818;
|
|
padding: 1em;
|
|
border: 0;
|
|
font-family: Iosevka Curly Iaso, monospace;
|
|
--
|
|
2.49.0
|
|
|