commit a6bfe06ec05b59167e3d309172c5b86768bdc353
Author: ZEvene <[email protected]>
Date: Tue Sep 8 18:39:00 2020 -0600
Added a new dark mode stylesheet surf.
diff --git a/surf.suckless.org/stylesheets/darkmode_css/index.md
b/surf.suckless.org/stylesheets/darkmode_css/index.md
new file mode 100644
index 00000000..937f4664
--- /dev/null
+++ 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;
+ }