• Activity
  • Votes
  • Comments
  • New
  • All activity
  • Showing only topics with the tag "dark". Back to normal view
    1. Dissapointing affirmation anyone?

      Was listening to a pod where one person shared a funny, and having fun is taking care of your ~mental.health This is my kind of humour, an 'article' about it:...

      Was listening to a pod where one person shared a funny, and having fun is taking care of your ~mental.health

      This is my kind of humour, an 'article' about it: https://pleated-jeans.com/2023/08/29/disappointing-affirmations-dave-tarnowski/

      And a link to the instagram account https://www.instagram.com/disappointingaffirmations/ for those who use instagram.

      The episode in question: Divergent Conversations: Episode 106(mp3)

      Maybe this isn't really a good topic, but maybe you'd like to share what makes you laugh, good podcasts or how you use humour for ~mental.health.

      I also wrote something related in one the monthly check in topics, so maybe @chocobean would like to give an update! (Sorry for calling you out like this, just trying to have some fun)

      19 votes
    2. Kagi recently changed their dark mode, fix inside

      Since I know quite a few tilderinos use Kagi (far higher percentage than the standard population) I figured this might interest some of you. Kagi pushed out a new Dark theme that is not dark. It's...

      Since I know quite a few tilderinos use Kagi (far higher percentage than the standard population) I figured this might interest some of you.

      Kagi pushed out a new Dark theme that is not dark. It's possibly even worse than Googles non-dark official Dark mode.

      Here is a CSS fix you can throw in your custom css section in settings that I whipped up for some people in the Discord, should be useful.

          :root {  
        --custom-bg-color: #090c10;
      
        --search-result-gap: 20px;
        --search-result-gap-mobile: 10px;
        --app-bg: var(--custom-bg-color);
        --search-result-title: #fff;
        --primary-visited: #aaa;
        /*! --quick-search-bg: #000; */
        --color-search-input: var(--custom-bg-color);
        --result-item-title-border: rgba(255,255,255,0.25);
        --search-result-date-bg: rgba(255,255,255,0.15);
      }
      
      .__sri-time {
        font-size: 12px;
        border-radius: 2px;
        margin-right: 3px
      }
      
      .__sri-desc {
        padding-top: 3px;
      }
      
      .__sri-title {
        margin-bottom: 5px;
      }
      
      .__sri-url .__sri_url_path_box {
        margin-top: 0px;
      }
      
      @media screen and (max-width: 1300px) {
        .search-result, .sri-group {
          padding-top: 0px !important;
          padding-bottom: 0px !important;
          margin-bottom: var(--search-result-gap-mobile) !important;
        }
      }  
      

      This fixes the colors, padding, and some other general weirdness they introduced. They also don't follow their own variable specs so I introduced two new ones in there so you can modify to your liking (namely padding between links on mobile and desktop).

      26 votes