Skip to content
  • Recent
  • Tags
  • Popular
  • Users
  • Search
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse

Lay Theme Forum

  1. Home
  2. General Discussion
  3. Dark mode — is it possible?

Dark mode — is it possible?

Scheduled Pinned Locked Moved General Discussion
20 Posts 8 Posters 1.4k Views
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • A Offline
    A Offline
    arminunruh
    Global Moderator
    wrote on Apr 23, 2020, 10:56 AM last edited by
    #8

    please create a new topic for your new issue

    make sure u have updated lay theme and all of your lay theme addons

    u can only update lay theme if u have entered the license key

    then make sure if you use any caching plugin to clear the cache or disable the caching plugin

    1 Reply Last reply
    0
    • H Offline
      H Offline
      Hayo Gebauer
      wrote on Aug 6, 2020, 7:49 PM last edited by
      #9

      After another go and mostly with the help of a friend, I made it work!
      There's just one small issue left, on mobile in darkmode if you cancel the menu or go to any link in the menu, the background lights up white, anyway to keep it dark?

      www.hayogebauer.com (issue only on mobile version)

      H K 2 Replies Last reply Aug 10, 2020, 12:26 PM
      0
      • H Hayo Gebauer
        Aug 6, 2020, 7:49 PM

        After another go and mostly with the help of a friend, I made it work!
        There's just one small issue left, on mobile in darkmode if you cancel the menu or go to any link in the menu, the background lights up white, anyway to keep it dark?

        www.hayogebauer.com (issue only on mobile version)

        H Offline
        H Offline
        Hayo Gebauer
        wrote on Aug 10, 2020, 12:26 PM last edited by
        #10
        This post is deleted!
        1 Reply Last reply
        0
        • F Offline
          F Offline
          felix_rabe
          wrote on Aug 10, 2020, 1:46 PM last edited by felix_rabe Aug 10, 2020, 9:47 AM
          #11

          @Hayo-Gebauer

          .nav.mobile-nav

          You have to tell the dark mode button to toggle the background of this css property to black.

          H 1 Reply Last reply Aug 10, 2020, 3:17 PM
          1
          • F felix_rabe
            Aug 10, 2020, 1:46 PM

            @Hayo-Gebauer

            .nav.mobile-nav

            You have to tell the dark mode button to toggle the background of this css property to black.

            H Offline
            H Offline
            Hayo Gebauer
            wrote on Aug 10, 2020, 3:17 PM last edited by
            #12

            Thanks, it worked!!
            @fr

            1 Reply Last reply
            0
            • R Offline
              R Offline
              Richard
              Global Moderator
              wrote on Aug 12, 2020, 8:02 PM last edited by
              #13

              Dear @fr

              Awesome! :)

              This is great for people in the future too

              Thank you sincerely & for using Lay Theme
              Richard

              1 Reply Last reply
              1
              • H Hayo Gebauer
                Aug 6, 2020, 7:49 PM

                After another go and mostly with the help of a friend, I made it work!
                There's just one small issue left, on mobile in darkmode if you cancel the menu or go to any link in the menu, the background lights up white, anyway to keep it dark?

                www.hayogebauer.com (issue only on mobile version)

                K Offline
                K Offline
                Keffer
                wrote on Jul 21, 2023, 12:48 PM last edited by
                #14

                Hello @Hayo-Gebauer

                By any chance can you give the code you used for your website ?

                Trying to get there but i'm not a code pro ...

                H 1 Reply Last reply Jul 24, 2023, 7:34 AM
                0
                • K Keffer
                  Jul 21, 2023, 12:48 PM

                  Hello @Hayo-Gebauer

                  By any chance can you give the code you used for your website ?

                  Trying to get there but i'm not a code pro ...

                  H Offline
                  H Offline
                  Hayo Gebauer
                  wrote on Jul 24, 2023, 7:34 AM last edited by
                  #15

                  @Keffer

                  This part is the darkmode code, first part of determines, that the website choses darrkmode, if the user has darkmode activated in their OS. (I put this part in Custom HTML at bottom)

                  <!-- Darkmode Code -->
                  <script>if (window.matchMedia && window.matchMedia("(prefers-color-scheme: dark)").matches){jQuery("body").addClass("dark-mode-on");}
                  window.laytheme.on("newpage", function(layoutObj, type, obj){
                   
                  });
                  window.laytheme.on("newpage", function(layoutObj, type, obj){
                  jQuery( "li#menu-item-3845" ).html( '<div class="dark-mode-wrapper"><svg xmlns="http://www.w3.org/2000/svg" id="darkmode" fill="currentColor" stroke="currentColor" stroke-width="1.2" viewBox="0 0 14.5 14.5"><defs><style>.cls-3{fill:none;}.cls-4{stroke:none}svg#darkmode {overflow: hidden;}</style></defs><title>DARKMODE</title><g id="Layer_2" data-name="Layer 2"><g id="Layer_1-2" data-name="Layer 1"><circle class="cls-3" cx="7.25" cy="7.25" r="6.75"/><path class="cls-4" d="M14,7.25a6.71,6.71,0,0,0-2.22-5L2.26,11.78A6.74,6.74,0,0,0,14,7.25Z"/></g></g></svg</div>');
                  });
                  jQuery(document).on("click", ".dark-mode-wrapper", function(event) {
                  jQuery("body").toggleClass("dark-mode-on");
                  });
                  </script>
                  

                  Now you need to adjust your CSS classes like this:

                  .dark-mode-on {background-color: #000!important}
                  

                  Go through everything until you have a complete darkmode. The darkmode button can be placed by giving a text or image the class:
                  dark-mode-wrapper

                  K 1 Reply Last reply Jul 24, 2023, 11:47 AM
                  2
                  • H Hayo Gebauer
                    Jul 24, 2023, 7:34 AM

                    @Keffer

                    This part is the darkmode code, first part of determines, that the website choses darrkmode, if the user has darkmode activated in their OS. (I put this part in Custom HTML at bottom)

                    <!-- Darkmode Code -->
                    <script>if (window.matchMedia && window.matchMedia("(prefers-color-scheme: dark)").matches){jQuery("body").addClass("dark-mode-on");}
                    window.laytheme.on("newpage", function(layoutObj, type, obj){
                     
                    });
                    window.laytheme.on("newpage", function(layoutObj, type, obj){
                    jQuery( "li#menu-item-3845" ).html( '<div class="dark-mode-wrapper"><svg xmlns="http://www.w3.org/2000/svg" id="darkmode" fill="currentColor" stroke="currentColor" stroke-width="1.2" viewBox="0 0 14.5 14.5"><defs><style>.cls-3{fill:none;}.cls-4{stroke:none}svg#darkmode {overflow: hidden;}</style></defs><title>DARKMODE</title><g id="Layer_2" data-name="Layer 2"><g id="Layer_1-2" data-name="Layer 1"><circle class="cls-3" cx="7.25" cy="7.25" r="6.75"/><path class="cls-4" d="M14,7.25a6.71,6.71,0,0,0-2.22-5L2.26,11.78A6.74,6.74,0,0,0,14,7.25Z"/></g></g></svg</div>');
                    });
                    jQuery(document).on("click", ".dark-mode-wrapper", function(event) {
                    jQuery("body").toggleClass("dark-mode-on");
                    });
                    </script>
                    

                    Now you need to adjust your CSS classes like this:

                    .dark-mode-on {background-color: #000!important}
                    

                    Go through everything until you have a complete darkmode. The darkmode button can be placed by giving a text or image the class:
                    dark-mode-wrapper

                    K Offline
                    K Offline
                    Keffer
                    wrote on Jul 24, 2023, 11:47 AM last edited by
                    #16

                    @Hayo-Gebauer

                    Thank you so much for this.

                    1 Reply Last reply
                    0
                    • K Keffer referenced this topic on Jul 24, 2023, 11:49 AM
                    • K Offline
                      K Offline
                      Keffer
                      wrote on Jul 29, 2023, 12:46 PM last edited by Keffer Jul 29, 2023, 11:28 AM
                      #17

                      I'm lost trying to put this in motion so a last question :

                      I would love to add the dark mode in automatic mode in your code, when the system is changing, the website is changing too, without having to refresh.

                      The example :
                      https://codepen.io/daelity/pen/zgNdZj
                      https://stackoverflow.com/questions/56393880/how-do-i-detect-dark-mode-using-javascript
                      https://www.section.io/engineering-education/watch-for-system-dark-mode-using-js-css/

                      Thank you anyone for the help.

                      1 Reply Last reply
                      0
                      • K Offline
                        K Offline
                        Keffer
                        wrote on Jul 29, 2023, 3:39 PM last edited by Keffer Jul 31, 2023, 8:13 AM
                        #18

                        Alright after some tests i've found the solution to have the dark/light mode synchronised.

                        <!-- Darkmode Code -->
                        <script>
                        
                        if (window.matchMedia && window.matchMedia("(prefers-color-scheme: dark)").matches){
                            jQuery("body").addClass("dark-mode-on");
                        }
                        window
                        	.matchMedia("(prefers-color-scheme: dark)")
                        	.addEventListener("change", function (e) {
                        		const colorScheme = e.matches ? "dark" : "light";
                        		console.log(colorScheme);
                        
                        		if (colorScheme === "dark") {
                        		    jQuery("body").addClass("dark-mode-on");
                        		} else {
                        		    jQuery("body").removeClass("dark-mode-on");
                        		}
                        	});
                        </script>
                        
                        1 Reply Last reply
                        0
                        • mariusjopenM mariusjopen
                          Nov 6, 2019, 9:30 AM

                          Dear @Hayo-Gebauer

                          Have a look here:

                          jQuery(document).on("click", ".clickme", function(event) {
                          jQuery("body").toogleClass("dark-mode-on");
                          });
                          

                          This toggles a class called "dark-mode-on" in the top of your page.

                          You can then use CSS with children elements to make the change. For example:

                          .dark-mode-on .site-title {
                          color: red;
                          }
                          
                          .dark-mode-on ._Default {
                          background-color: yellow;
                          }
                          

                          Just to give you a rough idea…

                          Hope that helps!

                          Best!

                          Marius

                          J Offline
                          J Offline
                          jacobtegel
                          wrote on Nov 12, 2023, 9:19 PM last edited by jacobtegel Nov 12, 2023, 4:20 PM
                          #19

                          Dear @mariusjopen and @Hayo-Gebauer thank you so much for your work on this topic!
                          i recently came across it and immediately tried to implement it on my site. I tried adding the darkmode button .clickme class ( i used .dark-mode-wrapper class) to an empty menu item and it would not fire the event, while an empty link on the site would fire it.
                          Any idea why that is or how to work around it? I would like to have the toggle button inside the menu permanently accessible.

                          https://jacobtegel.com/home-copy-2/

                          Thank you so much in advance!
                          Jacob

                          H 1 Reply Last reply Nov 12, 2023, 9:25 PM
                          0
                          • J jacobtegel
                            Nov 12, 2023, 9:19 PM

                            Dear @mariusjopen and @Hayo-Gebauer thank you so much for your work on this topic!
                            i recently came across it and immediately tried to implement it on my site. I tried adding the darkmode button .clickme class ( i used .dark-mode-wrapper class) to an empty menu item and it would not fire the event, while an empty link on the site would fire it.
                            Any idea why that is or how to work around it? I would like to have the toggle button inside the menu permanently accessible.

                            https://jacobtegel.com/home-copy-2/

                            Thank you so much in advance!
                            Jacob

                            H Offline
                            H Offline
                            Hayo Gebauer
                            wrote on Nov 12, 2023, 9:25 PM last edited by
                            #20

                            @jacobtegel let me know, when you find out, would like to know as well!

                            1 Reply Last reply
                            0
                            Reply
                            • Reply as topic
                            Log in to reply
                            • Oldest to Newest
                            • Newest to Oldest
                            • Most Votes


                            I also code custom websites or custom Lay features.
                            💿 Email me here: 💿
                            info@laytheme.com

                            Before you post:
                            1. When using a WordPress Cache plugin, disable it or clear your cache.
                            2. Update Lay Theme and all Lay Theme Addons
                            3. Disable all Plugins
                            4. Go to Lay Options → Custom CSS & HTML, click "Turn Off All Custom Code", click "Save Changes"

                            This often solves issues you might run into

                            When you post:
                            1. Post a link to where the problem is
                            2. Does the problem happen on Chrome, Firefox, Safari or iPhone or Android?
                            3. If the problem is difficult to explain, post screenshots / link to a video to explain it
                            Online Users
                            A
                            alasdair17
                            4 minutes ago
                            Forgot your key, lost your files, need a previous Lay Theme or Addon version? Go to www.laykeymanager.com
                            laytheme.com
                            • Login

                            • Don't have an account? Register

                            • Login or register to search.
                            • First post
                              Last post
                            0
                            • Recent
                            • Tags
                            • Popular
                            • Users
                            • Search