├── .gitignore ├── LICENSE ├── README.md ├── dist ├── 192_maskable.png ├── favicon.svg ├── manifest.json ├── script.js └── style.css ├── fonts └── Recursive_VF_1.078.woff2 ├── index.html ├── package.json ├── screenshots ├── dark.png ├── light.png └── mobile.png ├── src ├── OTmapping.js ├── assets │ ├── arrow-black.svg │ └── arrow-white.svg ├── data.js ├── fontkit.js ├── main.js ├── script.js └── style.css ├── sw.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imohanvadivel/variable-font-playground/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imohanvadivel/variable-font-playground/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imohanvadivel/variable-font-playground/HEAD/README.md -------------------------------------------------------------------------------- /dist/192_maskable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imohanvadivel/variable-font-playground/HEAD/dist/192_maskable.png -------------------------------------------------------------------------------- /dist/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imohanvadivel/variable-font-playground/HEAD/dist/favicon.svg -------------------------------------------------------------------------------- /dist/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imohanvadivel/variable-font-playground/HEAD/dist/manifest.json -------------------------------------------------------------------------------- /dist/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imohanvadivel/variable-font-playground/HEAD/dist/script.js -------------------------------------------------------------------------------- /dist/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imohanvadivel/variable-font-playground/HEAD/dist/style.css -------------------------------------------------------------------------------- /fonts/Recursive_VF_1.078.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imohanvadivel/variable-font-playground/HEAD/fonts/Recursive_VF_1.078.woff2 -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imohanvadivel/variable-font-playground/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imohanvadivel/variable-font-playground/HEAD/package.json -------------------------------------------------------------------------------- /screenshots/dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imohanvadivel/variable-font-playground/HEAD/screenshots/dark.png -------------------------------------------------------------------------------- /screenshots/light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imohanvadivel/variable-font-playground/HEAD/screenshots/light.png -------------------------------------------------------------------------------- /screenshots/mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imohanvadivel/variable-font-playground/HEAD/screenshots/mobile.png -------------------------------------------------------------------------------- /src/OTmapping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imohanvadivel/variable-font-playground/HEAD/src/OTmapping.js -------------------------------------------------------------------------------- /src/assets/arrow-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imohanvadivel/variable-font-playground/HEAD/src/assets/arrow-black.svg -------------------------------------------------------------------------------- /src/assets/arrow-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imohanvadivel/variable-font-playground/HEAD/src/assets/arrow-white.svg -------------------------------------------------------------------------------- /src/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imohanvadivel/variable-font-playground/HEAD/src/data.js -------------------------------------------------------------------------------- /src/fontkit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imohanvadivel/variable-font-playground/HEAD/src/fontkit.js -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imohanvadivel/variable-font-playground/HEAD/src/main.js -------------------------------------------------------------------------------- /src/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imohanvadivel/variable-font-playground/HEAD/src/script.js -------------------------------------------------------------------------------- /src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imohanvadivel/variable-font-playground/HEAD/src/style.css -------------------------------------------------------------------------------- /sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imohanvadivel/variable-font-playground/HEAD/sw.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imohanvadivel/variable-font-playground/HEAD/yarn.lock --------------------------------------------------------------------------------