mjml Archives - ProdSens.live https://prodsens.live/tag/mjml/ News for Project Managers - PMI Fri, 28 Apr 2023 18:03:18 +0000 en-US hourly 1 https://wordpress.org/?v=6.5.5 https://prodsens.live/wp-content/uploads/2022/09/prod.png mjml Archives - ProdSens.live https://prodsens.live/tag/mjml/ 32 32 Change your logo for dark mode in MJML https://prodsens.live/2023/04/28/change-your-logo-for-dark-mode-in-mjml/?utm_source=rss&utm_medium=rss&utm_campaign=change-your-logo-for-dark-mode-in-mjml https://prodsens.live/2023/04/28/change-your-logo-for-dark-mode-in-mjml/#respond Fri, 28 Apr 2023 18:03:18 +0000 https://prodsens.live/2023/04/28/change-your-logo-for-dark-mode-in-mjml/ change-your-logo-for-dark-mode-in-mjml

Developing emails can be a time-consuming process, but with MJML, you can simplify email development. This powerful framework…

The post Change your logo for dark mode in MJML appeared first on ProdSens.live.

]]>
change-your-logo-for-dark-mode-in-mjml

Developing emails can be a time-consuming process, but with MJML, you can simplify email development. This powerful framework makes it easy to create accessible emails that work across a variety of popular email clients.

If you want to change the appearance of your logo in dark mode, the good news is that MJML offers a simple solution. By applying the following code, you can customise the logo to your liking in dark mode. However, it’s important to keep in mind that prefers-color-scheme have limited email client support. To ensure that your logo is visible in all email clients, it’s a good idea to use a border or shadow for the light version of your logo. With these tips in mind, you’ll be well on your way to creating emails that look great!

If you want to know more about dark mode emails, then Litmus has a great blog on this.

`


  
  




  /* Dark Mode Style For Apple Mail and iOS */

  :root {
  color-scheme: light dark;
  supported-color-schemes: light dark;
  }

  @media (prefers-color-scheme: dark) {

  .darkmode{
  background-color:#20272D!important;
  }

  .light_img{
  display:none!important;
  }

  .dark_img{
  display:block!important;
  }

  }


`

The post Change your logo for dark mode in MJML appeared first on ProdSens.live.

]]>
https://prodsens.live/2023/04/28/change-your-logo-for-dark-mode-in-mjml/feed/ 0