├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── icons └── pixel │ ├── 031-celsius.svg │ ├── 031-cloudy-1.svg │ ├── 031-fahrenheit.svg │ ├── 031-humidity.svg │ ├── 031-snowflake.svg │ ├── clear-day.svg │ ├── clear-night.svg │ ├── close.svg │ ├── cloudy.svg │ ├── fog.svg │ ├── hail.svg │ ├── menu.png │ ├── partly-cloudy-day.svg │ ├── partly-cloudy-night.svg │ ├── rain.svg │ ├── sleet.svg │ ├── snow.svg │ ├── thunderstorm.svg │ ├── tornado.svg │ └── wind.svg ├── index.html ├── index.js ├── main.js ├── package.json ├── pixel.png ├── renderer.js ├── settings.html ├── settings.js └── style ├── OFL.txt ├── PressStart2P-Regular.ttf ├── nes.css └── styles.css /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aveek-Saha/pixel-weather/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | config.js 3 | dist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aveek-Saha/pixel-weather/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aveek-Saha/pixel-weather/HEAD/README.md -------------------------------------------------------------------------------- /icons/pixel/031-celsius.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aveek-Saha/pixel-weather/HEAD/icons/pixel/031-celsius.svg -------------------------------------------------------------------------------- /icons/pixel/031-cloudy-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aveek-Saha/pixel-weather/HEAD/icons/pixel/031-cloudy-1.svg -------------------------------------------------------------------------------- /icons/pixel/031-fahrenheit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aveek-Saha/pixel-weather/HEAD/icons/pixel/031-fahrenheit.svg -------------------------------------------------------------------------------- /icons/pixel/031-humidity.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aveek-Saha/pixel-weather/HEAD/icons/pixel/031-humidity.svg -------------------------------------------------------------------------------- /icons/pixel/031-snowflake.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aveek-Saha/pixel-weather/HEAD/icons/pixel/031-snowflake.svg -------------------------------------------------------------------------------- /icons/pixel/clear-day.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aveek-Saha/pixel-weather/HEAD/icons/pixel/clear-day.svg -------------------------------------------------------------------------------- /icons/pixel/clear-night.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aveek-Saha/pixel-weather/HEAD/icons/pixel/clear-night.svg -------------------------------------------------------------------------------- /icons/pixel/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aveek-Saha/pixel-weather/HEAD/icons/pixel/close.svg -------------------------------------------------------------------------------- /icons/pixel/cloudy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aveek-Saha/pixel-weather/HEAD/icons/pixel/cloudy.svg -------------------------------------------------------------------------------- /icons/pixel/fog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aveek-Saha/pixel-weather/HEAD/icons/pixel/fog.svg -------------------------------------------------------------------------------- /icons/pixel/hail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aveek-Saha/pixel-weather/HEAD/icons/pixel/hail.svg -------------------------------------------------------------------------------- /icons/pixel/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aveek-Saha/pixel-weather/HEAD/icons/pixel/menu.png -------------------------------------------------------------------------------- /icons/pixel/partly-cloudy-day.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aveek-Saha/pixel-weather/HEAD/icons/pixel/partly-cloudy-day.svg -------------------------------------------------------------------------------- /icons/pixel/partly-cloudy-night.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aveek-Saha/pixel-weather/HEAD/icons/pixel/partly-cloudy-night.svg -------------------------------------------------------------------------------- /icons/pixel/rain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aveek-Saha/pixel-weather/HEAD/icons/pixel/rain.svg -------------------------------------------------------------------------------- /icons/pixel/sleet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aveek-Saha/pixel-weather/HEAD/icons/pixel/sleet.svg -------------------------------------------------------------------------------- /icons/pixel/snow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aveek-Saha/pixel-weather/HEAD/icons/pixel/snow.svg -------------------------------------------------------------------------------- /icons/pixel/thunderstorm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aveek-Saha/pixel-weather/HEAD/icons/pixel/thunderstorm.svg -------------------------------------------------------------------------------- /icons/pixel/tornado.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aveek-Saha/pixel-weather/HEAD/icons/pixel/tornado.svg -------------------------------------------------------------------------------- /icons/pixel/wind.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aveek-Saha/pixel-weather/HEAD/icons/pixel/wind.svg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aveek-Saha/pixel-weather/HEAD/index.html -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aveek-Saha/pixel-weather/HEAD/index.js -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aveek-Saha/pixel-weather/HEAD/main.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aveek-Saha/pixel-weather/HEAD/package.json -------------------------------------------------------------------------------- /pixel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aveek-Saha/pixel-weather/HEAD/pixel.png -------------------------------------------------------------------------------- /renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aveek-Saha/pixel-weather/HEAD/renderer.js -------------------------------------------------------------------------------- /settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aveek-Saha/pixel-weather/HEAD/settings.html -------------------------------------------------------------------------------- /settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aveek-Saha/pixel-weather/HEAD/settings.js -------------------------------------------------------------------------------- /style/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aveek-Saha/pixel-weather/HEAD/style/OFL.txt -------------------------------------------------------------------------------- /style/PressStart2P-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aveek-Saha/pixel-weather/HEAD/style/PressStart2P-Regular.ttf -------------------------------------------------------------------------------- /style/nes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aveek-Saha/pixel-weather/HEAD/style/nes.css -------------------------------------------------------------------------------- /style/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aveek-Saha/pixel-weather/HEAD/style/styles.css --------------------------------------------------------------------------------