├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── figma.d.ts ├── manifest.json ├── media ├── banner.png └── logo.png ├── package.json ├── src ├── gradient.ts ├── main.ts ├── types.d.ts └── utils.ts ├── tsconfig.json └── webpack.config.js /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: matchai 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matchai/figma-easing-gradient/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matchai/figma-easing-gradient/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matchai/figma-easing-gradient/HEAD/README.md -------------------------------------------------------------------------------- /figma.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matchai/figma-easing-gradient/HEAD/figma.d.ts -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matchai/figma-easing-gradient/HEAD/manifest.json -------------------------------------------------------------------------------- /media/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matchai/figma-easing-gradient/HEAD/media/banner.png -------------------------------------------------------------------------------- /media/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matchai/figma-easing-gradient/HEAD/media/logo.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matchai/figma-easing-gradient/HEAD/package.json -------------------------------------------------------------------------------- /src/gradient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matchai/figma-easing-gradient/HEAD/src/gradient.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matchai/figma-easing-gradient/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matchai/figma-easing-gradient/HEAD/src/types.d.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matchai/figma-easing-gradient/HEAD/src/utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matchai/figma-easing-gradient/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matchai/figma-easing-gradient/HEAD/webpack.config.js --------------------------------------------------------------------------------