sites

public wiki contents of suckless.org
git clone git://git.suckless.org/sites
Log | Files | Refs

commit a6bfe06ec05b59167e3d309172c5b86768bdc353
parent 30bb87d852e2ef36103968eb833be82616ca1b2c
Author: ZEvene <2ndrateml@protonmail.com>
Date:   Tue,  8 Sep 2020 18:39:00 -0600

Added a new dark mode stylesheet surf.

Diffstat:
Asurf.suckless.org/stylesheets/darkmode_css/index.md | 26++++++++++++++++++++++++++
1 file changed, 26 insertions(+), 0 deletions(-)

diff --git a/surf.suckless.org/stylesheets/darkmode_css/index.md b/surf.suckless.org/stylesheets/darkmode_css/index.md @@ -0,0 +1,26 @@ +DARK css theme +=============== + +Description +----------- + +PUT THE FILE IN ~/.surf/styles/default.css to get a +dark themed surf. Uses the same css as vimb's dark mode. + +It makes everything dark gray and makes images opacity lower unless you hover over them. + + *,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; + } + img { + opacity: .5; + } + img:hover { + opacity: 1; + }