sites

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

index.md (617B)


      1 Dark CSS theme
      2 ==============
      3 
      4 Description
      5 -----------
      6 
      7 Put the file in ~/.surf/styles/default.css to get a dark themed surf. It uses
      8 the same CSS as vimb's dark mode.
      9 
     10 It makes everything dark gray and makes images opacity lower unless you hover over them.
     11 
     12     *,div,pre,textarea,body,input,td,tr,p {
     13         background-color: #202020 !important;
     14         background-image: none !important;
     15         color: #bbbbbb !important;
     16     }
     17     h1,h2,h3,h4 {
     18         background-color: #202020 !important;
     19         color: #b8ddea !important;
     20     }
     21     img {
     22         opacity: .5;
     23     }
     24     img:hover {
     25         opacity: 1;
     26     }