summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRafael Marçalo <raroma09@gmail.com>2023-11-30 05:08:58 +0000
committerRafael Marçalo <raroma09@gmail.com>2023-11-30 05:08:58 +0000
commita5cb1aeac7a971101ca4123018a0f856126844ce (patch)
tree489205ea2acacc87a2e59f79a04a11419813d2a1
parent2fbec682342533d060718e22cc8beb06747797d8 (diff)
More surf custom configuration
-rw-r--r--suckless/.config/suckless/surf/config.h4
-rw-r--r--surf/.config/surf/styles/default.css9
2 files changed, 11 insertions, 2 deletions
diff --git a/suckless/.config/suckless/surf/config.h b/suckless/.config/suckless/surf/config.h
index d630351..334b4b6 100644
--- a/suckless/.config/suckless/surf/config.h
+++ b/suckless/.config/suckless/surf/config.h
@@ -26,7 +26,7 @@ static Parameter defconfig[ParameterLast] = {
[Certificate] = { { .i = 0 }, },
[CaretBrowsing] = { { .i = 0 }, },
[CookiePolicies] = { { .v = "@Aa" }, },
- [DarkMode] = { { .i = 0 }, },
+ [DarkMode] = { { .i = 1 }, },
[DefaultCharset] = { { .v = "UTF-8" }, },
[DiskCache] = { { .i = 1 }, },
[DNSPrefetch] = { { .i = 0 }, },
@@ -51,7 +51,7 @@ static Parameter defconfig[ParameterLast] = {
[SpellChecking] = { { .i = 0 }, },
[SpellLanguages] = { { .v = ((char *[]){ "en_US", NULL }) }, },
[StrictTLS] = { { .i = 1 }, },
- [Style] = { { .i = 1 }, },
+ [Style] = { { .i = 0 }, },
[WebGL] = { { .i = 0 }, },
[ZoomLevel] = { { .f = 1.0 }, },
};
diff --git a/surf/.config/surf/styles/default.css b/surf/.config/surf/styles/default.css
new file mode 100644
index 0000000..077fe1a
--- /dev/null
+++ b/surf/.config/surf/styles/default.css
@@ -0,0 +1,9 @@
+*,div,pre,textarea,body,input,td,tr,p {
+ background-color: #202020 !important;
+ background-image: none !important;
+ color: #bbbbbb !important;
+}
+h1,h2,h3,h4 {
+ background-color: #202020 !important;
+ color: #b8ddea !important;
+}