├── .DS_Store ├── .gitignore ├── .prettierrc.mjs ├── .vscode ├── extensions.json ├── launch.json └── settings.json ├── README.md ├── astro.config.mjs ├── eslint.config.mjs ├── package.json ├── public ├── 404.mp4 ├── apple-touch-icon.png ├── bg-texture.webp ├── favicon.ico ├── favicon.svg ├── fonts │ └── Erstling │ │ └── Erstling-Regular.woff2 ├── manifest.webmanifest ├── og-image.jpg ├── sitemap.xsl ├── something.webp ├── web-app-manifest-192x192.png └── web-app-manifest-512x512.png ├── src ├── components │ ├── Canvas.astro │ ├── Cursor.astro │ ├── EffectTile.astro │ ├── Footer.astro │ ├── HeaderGeneric.astro │ ├── PageDecoration.astro │ └── ShaderLinks.astro ├── content.config.ts ├── content │ └── effects │ │ ├── distortion │ │ ├── 001.md │ │ ├── 002.md │ │ ├── 003.md │ │ └── 004.md │ │ ├── happy-little-accidents │ │ ├── 001.md │ │ ├── 002.md │ │ ├── 003.md │ │ ├── 004.md │ │ ├── 005.md │ │ └── 006.md │ │ ├── hover │ │ ├── 001.md │ │ ├── 002.md │ │ ├── 003.md │ │ └── 004.md │ │ └── scroll │ │ ├── 001.md │ │ └── 002.md ├── env.d.ts ├── layouts │ └── Layout.astro ├── pages │ ├── 404.astro │ ├── [...effect].astro │ ├── index.astro │ ├── legal.astro │ └── privacy.astro ├── scripts │ ├── console.ts │ ├── inview.ts │ ├── scroll.ts │ └── utils.ts ├── shader │ ├── distortion │ │ ├── 001 │ │ │ ├── fragment.glsl │ │ │ └── vertex.glsl │ │ ├── 002 │ │ │ ├── fragment.glsl │ │ │ └── vertex.glsl │ │ ├── 003 │ │ │ ├── fragment.glsl │ │ │ └── vertex.glsl │ │ └── 004 │ │ │ ├── fragment.glsl │ │ │ └── vertex.glsl │ ├── fragment.glsl │ ├── happy-little-accidents │ │ ├── 001 │ │ │ ├── fragment.glsl │ │ │ └── vertex.glsl │ │ ├── 002 │ │ │ ├── fragment.glsl │ │ │ └── vertex.glsl │ │ ├── 003 │ │ │ ├── fragment.glsl │ │ │ └── vertex.glsl │ │ ├── 004 │ │ │ ├── fragment.glsl │ │ │ └── vertex.glsl │ │ ├── 005 │ │ │ ├── fragment.glsl │ │ │ └── vertex.glsl │ │ └── 006 │ │ │ ├── fragment.glsl │ │ │ └── vertex.glsl │ ├── hover │ │ ├── 001 │ │ │ ├── fragment.glsl │ │ │ └── vertex.glsl │ │ ├── 002 │ │ │ ├── fragment.glsl │ │ │ └── vertex.glsl │ │ ├── 003 │ │ │ ├── fragment.glsl │ │ │ └── vertex.glsl │ │ └── 004 │ │ │ ├── fragment.glsl │ │ │ └── vertex.glsl │ ├── scroll │ │ ├── 001 │ │ │ ├── fragment.glsl │ │ │ └── vertex.glsl │ │ └── 002 │ │ │ ├── fragment.glsl │ │ │ └── vertex.glsl │ ├── utils │ │ └── noise2D.glsl │ └── vertex.glsl └── styles │ ├── _base.scss │ ├── _fonts.scss │ ├── _functions.scss │ ├── _mixins.scss │ ├── _typography.scss │ ├── _vars.scss │ └── index.scss ├── tsconfig.json ├── vercel.json └── yarn.lock /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/.prettierrc.mjs -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/README.md -------------------------------------------------------------------------------- /astro.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/astro.config.mjs -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/package.json -------------------------------------------------------------------------------- /public/404.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/public/404.mp4 -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/public/apple-touch-icon.png -------------------------------------------------------------------------------- /public/bg-texture.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/public/bg-texture.webp -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/public/favicon.svg -------------------------------------------------------------------------------- /public/fonts/Erstling/Erstling-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/public/fonts/Erstling/Erstling-Regular.woff2 -------------------------------------------------------------------------------- /public/manifest.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/public/manifest.webmanifest -------------------------------------------------------------------------------- /public/og-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/public/og-image.jpg -------------------------------------------------------------------------------- /public/sitemap.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/public/sitemap.xsl -------------------------------------------------------------------------------- /public/something.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/public/something.webp -------------------------------------------------------------------------------- /public/web-app-manifest-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/public/web-app-manifest-192x192.png -------------------------------------------------------------------------------- /public/web-app-manifest-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/public/web-app-manifest-512x512.png -------------------------------------------------------------------------------- /src/components/Canvas.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/src/components/Canvas.astro -------------------------------------------------------------------------------- /src/components/Cursor.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/src/components/Cursor.astro -------------------------------------------------------------------------------- /src/components/EffectTile.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/src/components/EffectTile.astro -------------------------------------------------------------------------------- /src/components/Footer.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/src/components/Footer.astro -------------------------------------------------------------------------------- /src/components/HeaderGeneric.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/src/components/HeaderGeneric.astro -------------------------------------------------------------------------------- /src/components/PageDecoration.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/src/components/PageDecoration.astro -------------------------------------------------------------------------------- /src/components/ShaderLinks.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/src/components/ShaderLinks.astro -------------------------------------------------------------------------------- /src/content.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/src/content.config.ts -------------------------------------------------------------------------------- /src/content/effects/distortion/001.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/src/content/effects/distortion/001.md -------------------------------------------------------------------------------- /src/content/effects/distortion/002.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/src/content/effects/distortion/002.md -------------------------------------------------------------------------------- /src/content/effects/distortion/003.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/src/content/effects/distortion/003.md -------------------------------------------------------------------------------- /src/content/effects/distortion/004.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/src/content/effects/distortion/004.md -------------------------------------------------------------------------------- /src/content/effects/happy-little-accidents/001.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/src/content/effects/happy-little-accidents/001.md -------------------------------------------------------------------------------- /src/content/effects/happy-little-accidents/002.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/src/content/effects/happy-little-accidents/002.md -------------------------------------------------------------------------------- /src/content/effects/happy-little-accidents/003.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/src/content/effects/happy-little-accidents/003.md -------------------------------------------------------------------------------- /src/content/effects/happy-little-accidents/004.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/src/content/effects/happy-little-accidents/004.md -------------------------------------------------------------------------------- /src/content/effects/happy-little-accidents/005.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/src/content/effects/happy-little-accidents/005.md -------------------------------------------------------------------------------- /src/content/effects/happy-little-accidents/006.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/src/content/effects/happy-little-accidents/006.md -------------------------------------------------------------------------------- /src/content/effects/hover/001.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/src/content/effects/hover/001.md -------------------------------------------------------------------------------- /src/content/effects/hover/002.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/src/content/effects/hover/002.md -------------------------------------------------------------------------------- /src/content/effects/hover/003.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/src/content/effects/hover/003.md -------------------------------------------------------------------------------- /src/content/effects/hover/004.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/src/content/effects/hover/004.md -------------------------------------------------------------------------------- /src/content/effects/scroll/001.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/src/content/effects/scroll/001.md -------------------------------------------------------------------------------- /src/content/effects/scroll/002.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/src/content/effects/scroll/002.md -------------------------------------------------------------------------------- /src/env.d.ts: -------------------------------------------------------------------------------- 1 | declare module '*.glsl'; 2 | 3 | /// 4 | -------------------------------------------------------------------------------- /src/layouts/Layout.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/src/layouts/Layout.astro -------------------------------------------------------------------------------- /src/pages/404.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/src/pages/404.astro -------------------------------------------------------------------------------- /src/pages/[...effect].astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/src/pages/[...effect].astro -------------------------------------------------------------------------------- /src/pages/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/src/pages/index.astro -------------------------------------------------------------------------------- /src/pages/legal.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/src/pages/legal.astro -------------------------------------------------------------------------------- /src/pages/privacy.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/src/pages/privacy.astro -------------------------------------------------------------------------------- /src/scripts/console.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/src/scripts/console.ts -------------------------------------------------------------------------------- /src/scripts/inview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/src/scripts/inview.ts -------------------------------------------------------------------------------- /src/scripts/scroll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/src/scripts/scroll.ts -------------------------------------------------------------------------------- /src/scripts/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/src/scripts/utils.ts -------------------------------------------------------------------------------- /src/shader/distortion/001/fragment.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/src/shader/distortion/001/fragment.glsl -------------------------------------------------------------------------------- /src/shader/distortion/001/vertex.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/src/shader/distortion/001/vertex.glsl -------------------------------------------------------------------------------- /src/shader/distortion/002/fragment.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/src/shader/distortion/002/fragment.glsl -------------------------------------------------------------------------------- /src/shader/distortion/002/vertex.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/src/shader/distortion/002/vertex.glsl -------------------------------------------------------------------------------- /src/shader/distortion/003/fragment.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/src/shader/distortion/003/fragment.glsl -------------------------------------------------------------------------------- /src/shader/distortion/003/vertex.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/src/shader/distortion/003/vertex.glsl -------------------------------------------------------------------------------- /src/shader/distortion/004/fragment.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/src/shader/distortion/004/fragment.glsl -------------------------------------------------------------------------------- /src/shader/distortion/004/vertex.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/src/shader/distortion/004/vertex.glsl -------------------------------------------------------------------------------- /src/shader/fragment.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/src/shader/fragment.glsl -------------------------------------------------------------------------------- /src/shader/happy-little-accidents/001/fragment.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/src/shader/happy-little-accidents/001/fragment.glsl -------------------------------------------------------------------------------- /src/shader/happy-little-accidents/001/vertex.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/src/shader/happy-little-accidents/001/vertex.glsl -------------------------------------------------------------------------------- /src/shader/happy-little-accidents/002/fragment.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/src/shader/happy-little-accidents/002/fragment.glsl -------------------------------------------------------------------------------- /src/shader/happy-little-accidents/002/vertex.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/src/shader/happy-little-accidents/002/vertex.glsl -------------------------------------------------------------------------------- /src/shader/happy-little-accidents/003/fragment.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/src/shader/happy-little-accidents/003/fragment.glsl -------------------------------------------------------------------------------- /src/shader/happy-little-accidents/003/vertex.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/src/shader/happy-little-accidents/003/vertex.glsl -------------------------------------------------------------------------------- /src/shader/happy-little-accidents/004/fragment.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/src/shader/happy-little-accidents/004/fragment.glsl -------------------------------------------------------------------------------- /src/shader/happy-little-accidents/004/vertex.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/src/shader/happy-little-accidents/004/vertex.glsl -------------------------------------------------------------------------------- /src/shader/happy-little-accidents/005/fragment.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/src/shader/happy-little-accidents/005/fragment.glsl -------------------------------------------------------------------------------- /src/shader/happy-little-accidents/005/vertex.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/src/shader/happy-little-accidents/005/vertex.glsl -------------------------------------------------------------------------------- /src/shader/happy-little-accidents/006/fragment.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/src/shader/happy-little-accidents/006/fragment.glsl -------------------------------------------------------------------------------- /src/shader/happy-little-accidents/006/vertex.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/src/shader/happy-little-accidents/006/vertex.glsl -------------------------------------------------------------------------------- /src/shader/hover/001/fragment.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/src/shader/hover/001/fragment.glsl -------------------------------------------------------------------------------- /src/shader/hover/001/vertex.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/src/shader/hover/001/vertex.glsl -------------------------------------------------------------------------------- /src/shader/hover/002/fragment.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/src/shader/hover/002/fragment.glsl -------------------------------------------------------------------------------- /src/shader/hover/002/vertex.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/src/shader/hover/002/vertex.glsl -------------------------------------------------------------------------------- /src/shader/hover/003/fragment.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/src/shader/hover/003/fragment.glsl -------------------------------------------------------------------------------- /src/shader/hover/003/vertex.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/src/shader/hover/003/vertex.glsl -------------------------------------------------------------------------------- /src/shader/hover/004/fragment.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/src/shader/hover/004/fragment.glsl -------------------------------------------------------------------------------- /src/shader/hover/004/vertex.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/src/shader/hover/004/vertex.glsl -------------------------------------------------------------------------------- /src/shader/scroll/001/fragment.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/src/shader/scroll/001/fragment.glsl -------------------------------------------------------------------------------- /src/shader/scroll/001/vertex.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/src/shader/scroll/001/vertex.glsl -------------------------------------------------------------------------------- /src/shader/scroll/002/fragment.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/src/shader/scroll/002/fragment.glsl -------------------------------------------------------------------------------- /src/shader/scroll/002/vertex.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/src/shader/scroll/002/vertex.glsl -------------------------------------------------------------------------------- /src/shader/utils/noise2D.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/src/shader/utils/noise2D.glsl -------------------------------------------------------------------------------- /src/shader/vertex.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/src/shader/vertex.glsl -------------------------------------------------------------------------------- /src/styles/_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/src/styles/_base.scss -------------------------------------------------------------------------------- /src/styles/_fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/src/styles/_fonts.scss -------------------------------------------------------------------------------- /src/styles/_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/src/styles/_functions.scss -------------------------------------------------------------------------------- /src/styles/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/src/styles/_mixins.scss -------------------------------------------------------------------------------- /src/styles/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/src/styles/_typography.scss -------------------------------------------------------------------------------- /src/styles/_vars.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/src/styles/_vars.scss -------------------------------------------------------------------------------- /src/styles/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/src/styles/index.scss -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/vercel.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jankohlbach/real-world-shader/HEAD/yarn.lock --------------------------------------------------------------------------------