Capitol Armory ad

Dark Mode

The #1 community for Gun Owners in Texas

Member Benefits:

  • Fewer Ads!
  • Discuss all aspects of firearm ownership
  • Discuss anti-gun legislation
  • Buy, sell, and trade in the classified section
  • Chat with Local gun shops, ranges, trainers & other businesses
  • Discover free outdoor shooting areas
  • View up to date on firearm-related events
  • Share photos & video with other members
  • ...and so much more!
  • BeatTheTunaUp

    Fux with the best, Die like the rest
    Rating - 100%
    3   0   0
    Oct 17, 2012
    2,103
    96
    Temple TX
    I use the dark mode on my android for websites. Everything is black. Like this.
    Screenshot_20211018-014005_Samsung Internet.jpg
     
    Last edited:

    ZX9RCAM

    Over the Rainbow bridge...
    TGT Supporter
    Lifetime Member
    Rating - 100%
    2   0   0
    May 14, 2008
    59,739
    96
    The Woodlands, Tx.
    Right but for those of us not addicted to our phones and access the site from a computer I don't see the option.

    I'm not addicted to my phone, I'm addicted to my TV.
    My computer and TV are in different rooms.
    That's why I always use my phone.

    :green:
     

    V-Tach

    Watching While the Sheep Graze
    Lifetime Member
    Rating - 100%
    7   0   0
    Sep 30, 2012
    8,899
    96
    Texas
    I use dark mode on the websites than you can.....

    I also prefer it......

    I also do not use my phone for TGT .........only on rare occasions like traveling...
     

    Brains

    One of the idiots
    Rating - 100%
    3   0   0
    Apr 9, 2013
    6,904
    96
    Spring
    I wrote a partial stylesheet and appended it to the DOM. It's not persistent past one browsing session, but it was enough to have a little fun. Wasn't complete by any means either, there was still some white background stuff in there.

    Here's what I added:

    Code:
    .p-body {
      background-color: #202020;
    }
    .p-body-inner: {
      background-color: #404040;
    }
    .p-body-main {
      background-color: #000000;
    }
    .p-body-main--withSidebar {
      background-color: #505050;
    }
    .p-body-content {
      background-color: #505050;
    }
    .message-inner {
      background-color: #202020;
      color: #cfcfdf;
    }
    .message-cell { 
      background-color: #101010;
    }
    .bbCodeBlock-title {
      background-color: #404040;
      color: #cccccc;
    }
    .bbCodeBlock.bbCodeBlock--expandable.bbCodeBlock--quote.js-expandWatch {
      background-color: #400000;
    }
    .block--messages .message-inner .message-cell.message-cell--user section {
      background-color: #303030;
      color: #ccc;
    }
     
    Top Bottom