diff --git a/RX_FSK/RX_FSK.ino b/RX_FSK/RX_FSK.ino index a01eb0c..14f2949 100644 --- a/RX_FSK/RX_FSK.ino +++ b/RX_FSK/RX_FSK.ino @@ -455,7 +455,7 @@ const char *createSondeHubMap() { strcpy(ptr, HTMLHEAD); strcat(ptr, ""); HTMLBODY(ptr, "map.html"); if (!sonde.config.sondehub.active) { - strcat(ptr, "
NOTE: SondeHub uploading is not enabled, detected sonde will not be visable on map
"); + strcat(ptr, "
NOTE: SondeHub uploading is not enabled, detected sonde will not be visable on map
"); if ((*s->d.ser == 0) && ( !isnan(sonde.config.rxlat))) { sprintf(ptr + strlen(ptr), "", sonde.config.rxlat, sonde.config.rxlon); } else { diff --git a/RX_FSK/data/style.css b/RX_FSK/data/style.css index 4454375..2a32214 100755 --- a/RX_FSK/data/style.css +++ b/RX_FSK/data/style.css @@ -337,3 +337,21 @@ p{ text-align: left; } } +@media (prefers-color-scheme: dark) { + body { + background-color: #333; + } + h2{ + color: white; + } + table, th, td, .save, .topnav a.active { + color: white; + border: 1px solid grey; + border-collapse: collapse; + background-color: #333; + } + input, select, .tci, .warning { + color: white; + background-color: #333; + } +} \ No newline at end of file