1. 3

One reason I don’t use tilde.news as much is its hard-to-read (for me) colorscheme, the green-on-black is tough. So I wrote this UserStyle for it (installable with Stylus, etc).

html,
body,
textarea,
button,
input,
input[type="submit"],
.select2-container,
.select2-container-multi,
.select2-choices,
.select2-search-field,
.select2-container-multi .select2-choices
{
    background: #f8f8f8;
}

a.tag {
    background: #d0d0d0;
}
    1. 2

      interesting, i spent a good chunk of time writing the dark theme when i originally set it up because lobste.rs was blinding me

      1. 0

        I just turn the brightness down on my monitor, lol. I find the contrast much harder to see with white-on-black (or green-on-black).

    2. 2

      Submitted a pull request! I think this is the only place it’s needed.

    3. 0

      Edited:

      @-moz-document domain("tilde.news") {
      * {
          color: black;
      }
      
      a:link {
          color: blue;
      }
      
      #header,
      div#footer,
      li.story div.details span.link a {
          font-weight: normal;
      }
      
      a:visited,
      li.story div.details span.link a:visited {
          color: purple;
      }
      
      html,
      body,
      textarea,
      button,
      input,
      input[type="submit"],
      .select2-container,
      .select2-container-multi,
      .select2-choices,
      .select2-search-field,
      .select2-container-multi .select2-choices
      {
          background: #ffffee;
      }
      
      a.tag {
          background: #d0d0d0;
      }
      }