all 4 comments

[–][deleted]  (2 children)

[deleted]

    [–]Nikolai_Jakov[S] 2 insightful - 1 fun2 insightful - 0 fun3 insightful - 1 fun -  (1 child)

    yeah i know how to make it dark mode. but the text on this sub is dark when its on night mode.

    [–]Hoaxacaust 1 insightful - 1 fun1 insightful - 0 fun2 insightful - 1 fun -  (2 children)

    .thing .title.loggedin.click,
    .thing .title.click,
    .thing .title.loggedin,
    .thing .title {
     color:#000000
    }
    

    should be

    .thing .title.loggedin.click,
    .thing .title.click,
    .thing .title.loggedin,
    .thing .title {
     color:#FFFFFF
    }
    

    for white text, or the default blue:

    .thing .title.loggedin.click,
    .thing .title.click,
    .thing .title.loggedin,
    .thing .title {
     color:#72b7e9;
    }
    

    and to keep the black links in daymode, this should be added after:

    .theme-daymode .thing .title, .theme-daymode .subscription-box .title {
        color: #000000;
    }
    

    [–]Nikolai_Jakov[S] 2 insightful - 1 fun2 insightful - 0 fun3 insightful - 1 fun -  (1 child)

    this is probably obvious but where do i go for this?

    [–]Hoaxacaust 1 insightful - 1 fun1 insightful - 0 fun2 insightful - 1 fun -  (0 children)

    Ideally one of the mods would fix it (/u/ralad /u/TheSlobfather). If not, you need to install a browser plugin like Stylus (firefox, chrome) or Stylish (doesn't work for me in firefox, chrome) and install this style: https://userstyles.org/styles/182327/saidit-wor-nightmode-fix

    You can also use a plugin like Violentmonkey/Tampermonkey/Greasemonkey and click "Install style as userscript"

    Edit:
    Also noticed this is needed to read text submissions & flairs:

    .md {
        color: #c5c5c5 !important;
    }
    .theme-daymode .md {
        color: #292f34 !important;
    }
    .flair {
        color: #FFFFFF;
        padding-left: 25px;
    }
    .theme-daymode .flair {
        color: #404040;
    }