Jump to content

Dark Mode question


Xiija
 Share

You are about to reply to a thread that has been inactive for 1438 days.

Please take a moment to consider if this thread is worth bumping.

Recommended Posts

semi non-lsl query , but related to these forums...

 

does anyone use the dark theme here?

i'm using it, and when i do, the posting area looks like this ...

0d9aba17d465918af9e9a110e2b56d77.png

I'm using a custom style script to lighten the posts enuff to read ...

https://mybrowseraddon.com/custom-style-script.html

so now it looks like this ...

342de3b53d5a6e2dfbb1badf83ff2240.png

Am i doing something wrong with the dark mode ?... or is everyone seeing the same thing.. a hard to read post area?

Edited by Xiija
Link to comment
Share on other sites

If you use chrome or a chrome-based viewer like Brave, try adding in Dark Reader which works very well (some drop menus are now beige on white for me but most works fine).   You can adjust the tone of the background as well as the text if I remember correctly.  For ME, this is what I see when it is on. It can be turned off on pages where it doesn't work (most work).

 

Here is what I see:

 

image.thumb.png.5141fef2debb4d6ee3fc6d024394e85f.png

 

Edited by Chic Aeon
  • Like 1
Link to comment
Share on other sites

kk ty Wulfie,  i'll post the code i'm using incase anyone wants it..

for the url - https://community.secondlife.com/forums/forum/304-lsl-scripting/

i'm using the javascript -

window.addEventListener("load", () => { 

  // style thumb tacks
  let tacks = document.getElementsByClassName("ipsBadge");
  var x;
  for (x = 0; x < tacks.length; ++x){
      tacks[x].style.cssText = "background: lime !important;";
  } 
 
  // style stars
  let stars = document.getElementsByClassName("fa-star");
  var z;
  for (z = 0; z < stars.length; ++z){
      stars[z].style.cssText = "opacity: 1.0 !important; color: lime !important;";
  } 

  // style dark mode post area
  let posts = document.getElementsByClassName("prettyprinted");
  var y;
  for (y = 0; y < posts.length; ++y){
      posts[y].style.cssText = "background:  #d7f1b3 !important;";
  } 
  
}, false);

 

Link to comment
Share on other sites

2 minutes ago, bigmoe Whitfield said:

Invision provides the themes, which can be edited, best raise a jira if it needs changes, so LL can get in and make the proper changes to the styling sheet

These were complained about "loudly" when the big changes came in --- maybe a year ago? Not sure. Nothing was done. So I don't think this is a major priority. 

Link to comment
Share on other sites

14 minutes ago, Chic Aeon said:

These were complained about "loudly" when the big changes came in --- maybe a year ago? Not sure. Nothing was done. So I don't think this is a major priority. 

More like a month ago. The old dark theme (or the old white theme with Dark Reader) we had worked well enough. This new theme broke dark mode.

(And while I normally use the Dark Reader plugin, this new theme somehow manages to have some parts of the page stay completely white which is worse than reading black-on-black text.)

Edited by Wulfie Reanimator
Link to comment
Share on other sites

3 hours ago, Wulfie Reanimator said:

More like a month ago. The old dark theme (or the old white theme with Dark Reader) we had worked well enough. This new theme broke dark mode.

(And while I normally use the Dark Reader plugin, this new theme somehow manages to have some parts of the page stay completely white which is worse than reading black-on-black text.)

 

Ah, so they changed that too. Didn't know that.  Yes, for ME, the drop down menus don't work well and are white with yellow text.  There WERE however a ton of folks very unhappy with the original Dark Theme from the forums. Glad it worked OK for you.   

Link to comment
Share on other sites

You are about to reply to a thread that has been inactive for 1438 days.

Please take a moment to consider if this thread is worth bumping.

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
 Share

×
×
  • Create New...