MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    A New Chapter for MagicMirror: The Community Takes the Lead
    Read the statement by Michael Teeuw here.

    How to add custom weather icons

    Scheduled Pinned Locked Moved Development
    6 Posts 3 Posters 880 Views 3 Watching
    Loading More Posts
    • 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.
    • K Offline
      kool
      last edited by

      Hi everyone, i have no clue what im doing…i dont know how to code or really how the rpi/magicmirror works but here i am. So basically im using the default weather module (as it works) and i just wanna replace those icons with custom icons. I also wanna note that im using openmeteo and not the default openweathermap or wtv its called because it didn’t work.

      here is my config.js file (the weather part):

          module: "weather",
          position: "top_right", // Adjust position as needed
      locationName: "xxxx",
      displayLocation: "xxxx",
      header: "xxxx",
          config: {
      locationName: "xxxx",
      displayLocation: "xxxx",
      header: "xxxx",
              weatherProvider: "openmeteo", // Specify the Open-Meteo provider
              apiBase: "https://api.open-meteo.com/v1", // REQUIRED: Base URL for Open-Meteo
      
             lat: xxxx, // REQUIRED: Latitude of the location
              lon: xxxx, // REQUIRED: Longitude of the location
              maxNumberOfDays: 8, // OPTIONAL: Number of forecast days (default is 5)
              pastDays: 0, // OPTIONAL: Number of past days of data to include (default is 0)
         units: "imperial", // Set this to 'imperial' for Fahrenheit and miles per hour
              tempUnits: "imperial", // Make sure to match with 'imperial'
              windUnits: "imperial",
              type: "current", // OPTIONAL: Change to "current" if only current weather data is desired
      iconTable: {
      					'0': 'wi-day-sunny',         // Clear sky
      					'1': 'wi-day-cloudy',        // Mainly clear
      					'2': 'wi-cloudy',            // Partly cloudy
      					'3': 'wi-cloudy',            // Overcast
      					'45': 'wi-fog',              // Fog
      					'48': 'wi-fog',              // Depositing rime fog
      					'51': 'wi-showers',          // Drizzle: Light intensity
      					'53': 'wi-showers',          // Drizzle: Moderate intensity
      					'55': 'wi-showers',          // Drizzle: Dense intensity
      					'56': 'wi-sleet',            // Freezing drizzle: Light intensity
      					'57': 'wi-sleet',            // Freezing drizzle: Dense intensity
      					'61': 'wi-rain',             // Rain: Slight
      					'63': 'wi-rain',             // Rain: Moderate
      					'65': 'wi-rain',             // Rain: Heavy intensity
      					'66': 'wi-sleet',            // Freezing rain: Light intensity
      					'67': 'wi-sleet',            // Freezing rain: Heavy intensity
      					'71': 'wi-snow',             // Snow fall: Slight
      					'73': 'wi-snow',             // Snow fall: Moderate
      					'75': 'wi-snow',             // Snow fall: Heavy intensity
      					'77': 'wi-snow',             // Snow grains
      					'80': 'wi-showers',          // Rain showers: Slight
      					'81': 'wi-rain',             // Rain showers: Moderate
      					'82': 'wi-rain',             // Rain showers: Violent
      					'85': 'wi-snow',             // Snow showers: Slight
      					'86': 'wi-snow',             // Snow showers: Heavy
      					'95': 'wi-thunderstorm',     // Thunderstorm: Slight or moderate
      					'96': 'wi-thunderstorm',     // Thunderstorm with slight hail
      					'99': 'wi-thunderstorm'      // Thunderstorm with heavy hail
      				}
       
          }
      },
      
      {
          module: "weather",
          position: "top_right", // Adjust position as needed
      locationName: "xxxx",
      displayLocation: "xxxx",
      header: "xxxx",
          config: {
      locationName: "xxxx",
      displayLocation: "xxxx",
      header: "xxxx",
              weatherProvider: "openmeteo", // Specify the Open-Meteo provider
              apiBase: "https://api.open-meteo.com/v1", // REQUIRED: Base URL for Open-Meteo
      
             lat: xxxx, // REQUIRED: Latitude of the location
              lon: xxxx, // REQUIRED: Longitude of the location
              maxNumberOfDays: 8, // OPTIONAL: Number of forecast days (default is 5)
              pastDays: 0, // OPTIONAL: Number of past days of data to include (default is 0)
         units: "imperial", // Set this to 'imperial' for Fahrenheit and miles per hour
              tempUnits: "imperial", // Make sure to match with 'imperial'
              windUnits: "imperial",
              type: "forecast", // OPTIONAL: Change to "current" if only current weather data is desired
      iconTable: {
      					'0': 'wi-day-sunny',         // Clear sky
      					'1': 'wi-day-cloudy',        // Mainly clear
      					'2': 'wi-cloudy',            // Partly cloudy
      					'3': 'wi-cloudy',            // Overcast
      					'45': 'wi-fog',              // Fog
      					'48': 'wi-fog',              // Depositing rime fog
      					'51': 'wi-showers',          // Drizzle: Light intensity
      					'53': 'wi-showers',          // Drizzle: Moderate intensity
      					'55': 'wi-showers',          // Drizzle: Dense intensity
      					'56': 'wi-sleet',            // Freezing drizzle: Light intensity
      					'57': 'wi-sleet',            // Freezing drizzle: Dense intensity
      					'61': 'wi-rain',             // Rain: Slight
      					'63': 'wi-rain',             // Rain: Moderate
      					'65': 'wi-rain',             // Rain: Heavy intensity
      					'66': 'wi-sleet',            // Freezing rain: Light intensity
      					'67': 'wi-sleet',            // Freezing rain: Heavy intensity
      					'71': 'wi-snow',             // Snow fall: Slight
      					'73': 'wi-snow',             // Snow fall: Moderate
      					'75': 'wi-snow',             // Snow fall: Heavy intensity
      					'77': 'wi-snow',             // Snow grains
      					'80': 'wi-showers',          // Rain showers: Slight
      					'81': 'wi-rain',             // Rain showers: Moderate
      					'82': 'wi-rain',             // Rain showers: Violent
      					'85': 'wi-snow',             // Snow showers: Slight
      					'86': 'wi-snow',             // Snow showers: Heavy
      					'95': 'wi-thunderstorm',     // Thunderstorm: Slight or moderate
      					'96': 'wi-thunderstorm',     // Thunderstorm with slight hail
      					'99': 'wi-thunderstorm'      // Thunderstorm with heavy hail
      				}
       
          }
      },
      
      

      sorry if that looks bad…also note that i got that table from this reddit post (the second image in the post): https://www.reddit.com/r/filemaker/comments/14yrpb9/openmeteo_weather_api_integration_free_icons_free/

      here is my custom.css file:

      /*!
      *  Weather Icons 2.0.8
      *  Updated September 19, 2015
      *  Weather themed icons for Bootstrap
      *  Author - Erik Flowers - erik@helloerik.com
      *  Email: erik@helloerik.com
      *  Twitter: http://twitter.com/Erik_UX
      *  ------------------------------------------------------------------------------
      *  Maintained at http://erikflowers.github.io/weather-icons
      *
      *  License
      *  ------------------------------------------------------------------------------
      *  - Font licensed under SIL OFL 1.1 -
      *    http://scripts.sil.org/OFL
      *  - CSS, SCSS and LESS are licensed under MIT License -
      *    http://opensource.org/licenses/mit-license.html
      *  - Documentation licensed under CC BY 3.0 -
      *    http://creativecommons.org/licenses/by/3.0/
      *  - Inspired by and works great as a companion with Font Awesome
      *    "Font Awesome by Dave Gandy - http://fontawesome.io"
      */
      @font-face {
       font-family: 'weathericons';
       src: url('../font/weathericons-regular-webfont.woff') format('woff');
       font-weight: normal;
       font-style: normal;
      }
      .wi {
       display: inline-block;
       font-family: 'weathericons';
       font-style: normal;
       font-weight: normal;
       line-height: 1;
       -webkit-font-smoothing: antialiased;
       -moz-osx-font-smoothing: grayscale;
      }
      .wi-fw {
       text-align: center;
       width: 1.4em;
      }
      .wi-rotate-90 {
       filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
       -webkit-transform: rotate(90deg);
       -ms-transform: rotate(90deg);
       transform: rotate(90deg);
      }
      .wi-rotate-180 {
       filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
       -webkit-transform: rotate(180deg);
       -ms-transform: rotate(180deg);
       transform: rotate(180deg);
      }
      .wi-rotate-270 {
       filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
       -webkit-transform: rotate(270deg);
       -ms-transform: rotate(270deg);
       transform: rotate(270deg);
      }
      .wi-flip-horizontal {
       filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
       -webkit-transform: scale(-1, 1);
       -ms-transform: scale(-1, 1);
       transform: scale(-1, 1);
      }
      .wi-flip-vertical {
       filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
       -webkit-transform: scale(1, -1);
       -ms-transform: scale(1, -1);
       transform: scale(1, -1);
      }
      
      
      
      /* Current Weather Icons */
      .currentweather .wi-day-sunny {
       content: url("/home/kool/MagicMirror/css/icons/6fa/day.svg") !important;
      
      }
      
      .currentweather .wi-night-clear {
       content: url("/home/kool/MagicMirror/css/icons/6fa/night.svg") !important;
      
      }
      
      .currentweather .wi-cloudy {
       content: url("/home/kool/MagicMirror/css/icons/6fa/cloudy.svg") !important;
      
      }
      
      .currentweather .wi-fog {
       content: url("/home/kool/MagicMirror/css/icons/6fa/fog.svg") !important;
       
      }
      
      .currentweather .wi-rain {
       content: url("/home/kool/MagicMirror/css/icons/6fa/rain.svg") !important;
      
      }
      
      /* Add more current weather icons as needed */
      
      /* Weather Forecast Icons */
      
      }
      
      .weatherforecast .wi-day-sunny {
       content: url("/home/kool/MagicMirror/css/icons/6fas/day.svg") !important;
      
      }
      
      .weatherforecast .wi-night-clear {
       content: url("/home/kool/MagicMirror/css/icons/6fa/night.svg") !important;
      
      }
      
      .weatherforecast .wi-cloudy {
       content: url("/home/kool/MagicMirror/css/icons/6fa/cloudy.svg") !important;
      
      }
      
      .weatherforecast .wi-fog {
       content: url("/home/kool/MagicMirror/css/icons/6fa/fog.svg") !important;
      
      }
      
      .weatherforecast .wi-rain {
       content: url("/home/kool/MagicMirror/css/icons/6fa/rain.svg") !important;
      
      }
      
      
      
      /* Hide Humidity */
      .humidity {
       display: none !important;
      }
      
      
      

      I got the icons from this other weather module (but that module didn’t work as openweathermap is like glitchy or something)… weather module link: https://github.com/MarcLandis/MMM-OpenWeatherMapForecast
      when i try to load the magic mirror, i see the numbers - like whats the weather and stuff, but i keep getting the default weather icons.
      basically my idea was to override the default weather icons with some custom weather icons that i found but its not exactly working
      any help would be greatly appreciated plz help me :(

      K S 2 Replies Last reply Reply Quote 0
      • K Offline
        kool @kool
        last edited by

        @kool
        Bumping this back up. Pleeeease help

        R 1 Reply Last reply Reply Quote 0
        • S Offline
          sdetweil @kool
          last edited by

          @kool said in How to add custom weather icons:

          /home/kool/MagicMirror/css/icons/6fa/night.svg

          we will never load file urls…

          you need to make them MM specific

            http://localhost:mmport/css....
            or 
            /css/...   (relative to the same server mm is loaded from)
          

          the mm web server root is the the MagicMirror folder

          Sam

          How to add modules

          learning how to use browser developers window for css changes

          K 1 Reply Last reply Reply Quote 0
          • K Offline
            kool @sdetweil
            last edited by

            @sdetweil
            I’m confused what you mean

            S 1 Reply Last reply Reply Quote 0
            • S Offline
              sdetweil @kool
              last edited by

              @kool in your custom.csss

              /* Current Weather Icons */
              .currentweather .wi-day-sunny {
               content: url("/home/kool/MagicMirror/css/icons/6fa/day.svg") !important;
              
              }
              

              the url will not work… our web server will only load things in the MM folder
              so you have to use the http:// exact or
              the / relative url

              Sam

              How to add modules

              learning how to use browser developers window for css changes

              1 Reply Last reply Reply Quote 0
              • R Offline
                rkorell @kool
                last edited by rkorell

                @kool said

                Bumping this back up. Pleeeease help

                Dear @kool ,

                if you are using url as suggested by Sam ( @sdetweil ), you are nearly done.
                As far as I can see from my rookie perspective you do have some redundancies in your config.js (e.g. the unit section: units, tempUnits, windUnits) ) but this shouldn’t disturb.
                As far as I understood you can delete these icontables because you do not use the icon-font but try to use some images from sigle file-URLs instead - so you can delete the whole section iconTable {} with all entries.

                In addition you have to adapt (see above, Sam’s tip) the URL of all you images in your custom.css file.
                (pls. double check, if the files are really in these locations)
                You wrote in your current css

                .weatherforecast .wi-day-sunny {
                content: url("/home/kool/MagicMirror/css/icons/6fas/day.svg") !important;
                
                }
                

                IF your weather-icon files are really in this directory (/home/kool/MagicMirror/css/icons/6fas/) than your css should be as follows:

                .weatherforecast .wi-day-sunny {
                 content: url("/css/icons/6fas/day.svg");
                
                

                You do not need the !important flag (in my case)

                second wrong thing besides the URL is your qualifier.

                you are using

                .weatherforecast .wi-something  ....
                

                This cannot be recognized because .weatherforecast is not defined.

                At first you have to decide if you want to have different icons for the current weather and for the weather forecast.
                (In my case this is true).
                IF you would like to have this you have to differentiate the two instances of the weather-module by a “classes” definition.

                For example your first instance of the weather module (current weather) than should be

                   module: "weather",
                    position: "top_right", // Adjust position as needed
                    classes: "weather_current",
                    config: {
                        weatherProvider: "openmeteo", // Specify the Open-Meteo provider
                        apiBase: "https://api.open-meteo.com/v1", // REQUIRED: Base URL for Open-Meteo
                
                       lat: xxxx, // REQUIRED: Latitude of the location
                        lon: xxxx, // REQUIRED: Longitude of the location
                        maxNumberOfDays: 8, // OPTIONAL: Number of forecast days (default is 5)
                        pastDays: 0, // OPTIONAL: Number of past days of data to include (default is 0)
                   units: "imperial", // Set this to 'imperial' for Fahrenheit and miles per hour
                        tempUnits: "imperial", // Make sure to match with 'imperial'
                        windUnits: "imperial",
                        type: "current", // OPTIONAL: Change to "current" if only current weather data is desired
                
                 
                    }
                },
                

                (pay attention for the third line: classes: “weather_current”, )
                THIS is your qualifier if you are about to diffrentiate between current weather and weather forecast image-wise.
                (“weather_current” is just an example! you can name it like you want every name is suitable and OK, only pay attention that all of these namings are strictly case sensitive, so Weather is NOT the same as weather"

                Your correct line for custom.css than is:

                .weather_current .wi-day-sunny {
                 content: url("/css/icons/6fas/day.svg");
                
                

                and the same dance than for your second instance with DIFFERENT classes-clause in config.js
                (e.g. a " classes: “weather_forecast”, " in the definition of the second weather instance ) results in a custom.css entry like this:

                .weather_forecast .wi-day-sunny {
                 content: url("/css/icons/some_other_directory_with_smaller_icons/day.svg");
                
                

                Because the “forecast instance” of the weather module is (in my case) organized as table I found it really useful to differentite these logos - big ones for current, smaller ones for the forecast:

                ScreenFloat Bildschirmfoto von Sublime Text am 14_04_2025, 13_38_51 14_04_2025, 13-38-51.jpg

                If You do NOT like to differentiate the current and forecast instance you do NOT need the classes-phrase in config.js and your correct qualifier is the name of the module (so “weather” ) and your custom.css entry is like this:

                .weather .wi-day-sunny {
                 content: url("/css/icons/6fas/day.svg");
                
                

                And this than is valid for both instances.

                Keep in mind that there are a LOT more weather conditions than the two times 5 conditions you have defined in your current custom.css!

                my own definition for the current weather for your reference:

                
                .weather_current .wi-fog  {
                content: url("/css/icons/current/wsymbol_0007_fog.png");
                }
                .weather_current .wi-cloudy  {
                content: url("/css/icons/current/wsymbol_0002_sunny_intervals.png");
                }
                .weather_current .wi-cloudy-windy {
                content: url("/css/icons/current/wsymbol_0004_black_low_cloud.png");
                }
                .weather_current .wi-rain  {
                content: url("/css/icons/current/wsymbol_0018_cloudy_with_heavy_rain.png");
                }
                .weather_current .wi-showers  {
                content: url("/css/icons/current/wsymbol_0017_cloudy_with_light_rain.png");
                }
                .weather_current .wi-thunderstorm  {
                content: url("/css/icons/current/wsymbol_0024_thunderstorms.png");
                }
                .weather_current .wi-snow  {
                content: url("/css/icons/current/wsymbol_0019_cloudy_with_light_snow.png");
                }
                .weather_current .wi-snowflake-cold {
                content: url("/css/icons/current/wsymbol_0020_cloudy_with_heavy_snow.png");
                }
                .weather_current .wi-na {
                content: url("/css/icons/current/wsymbol_0999_unknown.png");
                } 
                
                .weather_current .wi-day-sunny  {
                  content: url("/css/icons/current/wsymbol_0001_sunny.png");
                }
                .weather_current .wi-day-cloudy  {
                  content: url("/css/icons/current/wsymbol_0043_mostly_cloudy.png");
                }
                .weather_current .wi-day-cloudy-gusts  {
                  content: url("/css/icons/current/wsymbol_0004_black_low_cloud.png");
                }
                .weather_current .wi-day-cloudy-windy  {
                  content: url("/css/icons/current/wsymbol_0004_black_low_cloud.png");
                }
                .weather_current .wi-cloudy-windy  {
                  content: url("/css/icons/current/wsymbol_0004_black_low_cloud.png");
                }
                .weather_current .wi-day-fog  {
                  content: url("/css/icons/current/wsymbol_0007_fog.png");
                }
                .weather_current .wi-day-hail  {
                  content: url("/css/icons/current/wsymbol_0015_heavy_hail_showers.png");
                }
                .weather_current .wi-day-haze  {
                  content: url("/css/icons/current/wsymbol_0005_hazy_sun.png");
                }
                .weather_current .wi-day-lightning  {
                  content: url("/css/icons/current/wsymbol_0016_thundery_showers.png");
                }
                .weather_current .wi-day-rain  {
                  content: url("/css/icons/current/wsymbol_0085_extreme_rain_showers.png");
                }
                .weather_current .wi-day-rain-mix  {
                  content: url("/css/icons/current/wsymbol_0009_light_rain_showers.png");
                }
                .weather_current .wi-day-rain-wind  {
                  content: url("/css/icons/current/wsymbol_0010_heavy_rain_showers.png");
                }
                .weather_current .wi-day-showers  {
                  content: url("/css/icons/current/wsymbol_0018_cloudy_with_heavy_rain.png");
                }
                .weather_current .wi-day-sleet  {
                  content: url("/css/icons/current/wsymbol_0087_heavy_sleet_showers.png");
                }
                .weather_current .wi-day-sleet-storm  {
                  content: url("/css/icons/current/wsymbol_0089_heavy_sleet.png");
                }
                .weather_current .wi-day-snow  {
                  content: url("/css/icons/current/wsymbol_0011_light_snow_showers.png");
                }
                .weather_current .wi-day-snow-thunderstorm  {
                  content: url("/css/icons/current/wsymbol_0057_thundery_snow_showers.png");
                }
                .weather_current .wi-day-snow-wind  {
                  content: url("/css/icons/current/wsymbol_0053_blowing_snow.png");
                }
                .weather_current .wi-day-sprinkle  {
                  content: url("/css/icons/current/wsymbol_0009_light_rain_showers.png");
                }
                .weather_current .wi-day-storm-showers  {
                  content: url("/css/icons/current/wsymbol_0018_cloudy_with_heavy_rain.png");
                }
                .weather_current .wi-day-sunny-overcast  {
                  content: url("/css/icons/current/wsymbol_0002_sunny_intervals.png");
                }
                .weather_current .wi-day-thunderstorm  {
                  content: url("/css/icons/current/wsymbol_0024_thunderstorms.png");
                }
                .weather_current .wi-day-windy  {
                  content: url("/css/icons/current/wsymbol_0060_windy.png");
                }
                .weather_current .wi-solar-eclipse  {
                  content: url("/css/icons/current/wsymbol_0005_hazy_sun.png");
                }
                .weather_current .wi-hot  {
                  content: url("/css/icons/current/wsymbol_0045_hot.png");
                }
                .weather_current .wi-day-cloudy-high  {
                  content: url("/css/icons/current/wsymbol_0006_mist.png");
                }
                .weather_current .wi-day-light-wind  {
                  content: url("/css/icons/current/wsymbol_0060_windy.png");
                }
                .weather_current .wi-night-clear  {
                  content: url("/css/icons/current/wsymbol_0008_clear_sky_night.png");
                }
                .weather_current .wi-night-alt-cloudy  {
                  content: url("/css/icons/current/wsymbol_0041_partly_cloudy_night.png");
                }
                .weather_current .wi-night-alt-partly-cloudy  {
                  content: url("/css/icons/current/wsymbol_0041_partly_cloudy_night.png");
                }
                .weather_current .wi-night-alt-cloudy-gusts  {
                  content: url("/css/icons/current/wsymbol_0041_partly_cloudy_night.png");
                }
                .weather_current .wi-night-alt-cloudy-windy  {
                  content: url("/css/icons/current/wsymbol_0041_partly_cloudy_night.png");
                }
                .weather_current .wi-night-alt-hail  {
                  content: url("/css/icons/current/wsymbol_0031_heavy_hail_showers_night.png");
                }
                .weather_current .wi-night-alt-lightning  {
                  content: url("/css/icons/current/wsymbol_0032_thundery_showers_night.png");
                }
                .weather_current .wi-night-alt-rain  {
                  content: url("/css/icons/current/wsymbol_0025_light_rain_showers_night.png");
                }
                .weather_current .wi-night-alt-rain-mix  {
                  content: url("/css/icons/current/wsymbol_0026_heavy_rain_showers_night.png");
                }
                .weather_current .wi-night-alt-rain-wind  {
                  content: url("/css/icons/current/wsymbol_0026_heavy_rain_showers_night.png");
                }
                .weather_current .wi-night-alt-showers  {
                  content: url("/css/icons/current/wsymbol_0025_light_rain_showers_night.png");
                }
                .weather_current .wi-night-alt-sleet  {
                  content: url("/css/icons/current/wsymbol_0029_sleet_showers_night.png");
                }
                .weather_current .wi-night-alt-sleet-storm  {
                  content: url("/css/icons/current/wsymbol_0029_sleet_showers_night.png");
                }
                .weather_current .wi-night-alt-snow  {
                  content: url("/css/icons/current/wsymbol_0028_heavy_snow_showers_night.png");
                }
                .weather_current .wi-night-alt-snow-thunderstorm  {
                  content: url("/css/icons/current/wsymbol_0075_thundery_snow_showers_night.png");
                }
                .weather_current .wi-night-alt-snow-wind  {
                  content: url("/css/icons/current/wsymbol_0071_blowing_snow_night.png");
                }
                .weather_current .wi-night-alt-sprinkle  {
                  content: url("/css/icons/current/wsymbol_0025_light_rain_showers_night.png");
                }
                .weather_current .wi-night-alt-storm-showers  {
                  content: url("/css/icons/current/wsymbol_0026_heavy_rain_showers_night.png");
                }
                .weather_current .wi-night-alt-thunderstorm  {
                  content: url("/css/icons/current/wsymbol_0032_thundery_showers_night.png");
                }
                .weather_current .wi-night-cloudy  {
                  content: url("/css/icons/current/wsymbol_0041_partly_cloudy_night.png");
                }
                .weather_current .wi-night-cloudy-gusts  {
                  content: url("/css/icons/current/wsymbol_0044_mostly_cloudy_night.png");
                }
                .weather_current .wi-night-cloudy-windy  {
                  content: url("/css/icons/current/wsymbol_0044_mostly_cloudy_night.png");
                }
                .weather_current .wi-night-fog  {
                  content: url("/css/icons/current/wsymbol_0064_fog_night.png");
                }
                .weather_current .wi-night-hail  {
                  content: url("/css/icons/current/wsymbol_0039_cloudy_with_heavy_hail_night.png");
                }
                .weather_current .wi-night-lightning  {
                  content: url("/css/icons/current/wsymbol_0032_thundery_showers_night.png");
                }
                .weather_current .wi-night-partly-cloudy  {
                  content: url("/css/icons/current/wsymbol_0041_partly_cloudy_night.png");
                }
                .weather_current .wi-night-rain  {
                  content: url("/css/icons/current/wsymbol_0025_light_rain_showers_night.png");
                }
                .weather_current .wi-night-rain-mix  {
                  content: url("/css/icons/current/wsymbol_0026_heavy_rain_showers_night.png");
                }
                .weather_current .wi-night-rain-wind  {
                  content: url("/css/icons/current/wsymbol_0025_light_rain_showers_night.png");
                }
                .weather_current .wi-night-showers  {
                  content: url("/css/icons/current/wsymbol_0026_heavy_rain_showers_night.png");
                }
                .weather_current .wi-night-sleet  {
                  content: url("/css/icons/current/wsymbol_0029_sleet_showers_night.png");
                }
                .weather_current .wi-night-sleet-storm  {
                  content: url("/css/icons/current/wsymbol_0029_sleet_showers_night.png");
                }
                .weather_current .wi-night-snow  {
                  content: url("/css/icons/current/wsymbol_0027_light_snow_showers_night.png");
                }
                .weather_current .wi-night-snow-thunderstorm  {
                  content: url("/css/icons/current/wsymbol_0075_thundery_snow_showers_night.png");
                }
                .weather_current .wi-night-snow-wind  {
                  content: url("/css/icons/current/wsymbol_0028_heavy_snow_showers_night.png");
                }
                .weather_current .wi-night-sprinkle  {
                  content: url("/css/icons/current/wsymbol_0025_light_rain_showers_night.png");
                }
                .weather_current .wi-night-storm-showers  {
                  content: url("/css/icons/current/wsymbol_0026_heavy_rain_showers_night.png");
                }
                .weather_current .wi-night-thunderstorm  {
                  content: url("/css/icons/current/wsymbol_0032_thundery_showers_night.png");
                }
                
                
                

                HTH & good luck!
                Ralf

                1 Reply Last reply Reply Quote 1
                • 1 / 1
                • First post
                  Last post
                Enjoying MagicMirror? Please consider a donation!
                MagicMirror created by Michael Teeuw.
                Forum managed by Sam, technical setup by Karsten.
                This forum is using NodeBB as its core | Contributors
                Contact | Privacy Policy