commit 1fa65c0dc77b474dc87ffeac990101f27cceb3b8
parent 1942f4a76c5e45689ae4511bb12a8d04442bc29f
Author: shmak <shmak@tuta.io>
Date: Fri, 20 Jan 2023 22:29:53 +0530
surf stylesheet with lynx-like colors
Diffstat:
1 file changed, 37 insertions(+), 0 deletions(-)
diff --git a/surf.suckless.org/stylesheets/lynx/index.md b/surf.suckless.org/stylesheets/lynx/index.md
@@ -0,0 +1,37 @@
+Lynx-like colors
+================
+
+Description
+-----------
+
+Colors similar to the lynx web browser
+
+~/.surf/styles/default.css
+
+ * {
+ border-color: grey !important;
+ background-color: black !important;
+ background-image: black !important;
+ color: grey !important;
+ }
+
+ h1,h2,h3,h4,a {
+ color: green !important;
+ }
+
+ *:focus,h1:focus,h2:focus,h3:focus,h4:focus {
+ color: yellow !important;
+ }
+
+ img, video {
+ opacity: 0.3;
+ }
+
+ img:hover, video:hover {
+ opacity: 1;
+ }
+
+Author
+------
+
+* shmak <shmak@tuta.io>