diff options
-rw-r--r-- | suckless/.config/suckless/surf/config.h | 4 | ||||
-rw-r--r-- | surf/.config/surf/styles/default.css | 9 |
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; +} |