├── .github └── workflows │ └── check-production-build.yml ├── .gitignore ├── LICENSE.md ├── README.md ├── demo-naruto.gif ├── demo.gif ├── dither-shot.png ├── fd.png ├── manifest.json ├── package.json ├── pnpm-lock.yaml ├── renovate.json ├── src ├── code.ts ├── figma-plugin-ds.min.css ├── figma-plugin-ds.min.js ├── figma.d.ts ├── lib │ ├── IDitherOptions.ts │ ├── IImageFillData.ts │ ├── IJobsResult.ts │ ├── Queue.ts │ ├── ditherImageWorker.ts │ └── utils.ts ├── typings.d.ts ├── ui.css ├── ui.html ├── ui.ts └── worker │ └── entry.html ├── tsconfig.json └── webpack.config.js /.github/workflows/check-production-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkohd/FigmaDither/HEAD/.github/workflows/check-production-build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | node_modules/ 3 | 4 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkohd/FigmaDither/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkohd/FigmaDither/HEAD/README.md -------------------------------------------------------------------------------- /demo-naruto.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkohd/FigmaDither/HEAD/demo-naruto.gif -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkohd/FigmaDither/HEAD/demo.gif -------------------------------------------------------------------------------- /dither-shot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkohd/FigmaDither/HEAD/dither-shot.png -------------------------------------------------------------------------------- /fd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkohd/FigmaDither/HEAD/fd.png -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkohd/FigmaDither/HEAD/manifest.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkohd/FigmaDither/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkohd/FigmaDither/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkohd/FigmaDither/HEAD/renovate.json -------------------------------------------------------------------------------- /src/code.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkohd/FigmaDither/HEAD/src/code.ts -------------------------------------------------------------------------------- /src/figma-plugin-ds.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkohd/FigmaDither/HEAD/src/figma-plugin-ds.min.css -------------------------------------------------------------------------------- /src/figma-plugin-ds.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkohd/FigmaDither/HEAD/src/figma-plugin-ds.min.js -------------------------------------------------------------------------------- /src/figma.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkohd/FigmaDither/HEAD/src/figma.d.ts -------------------------------------------------------------------------------- /src/lib/IDitherOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkohd/FigmaDither/HEAD/src/lib/IDitherOptions.ts -------------------------------------------------------------------------------- /src/lib/IImageFillData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkohd/FigmaDither/HEAD/src/lib/IImageFillData.ts -------------------------------------------------------------------------------- /src/lib/IJobsResult.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkohd/FigmaDither/HEAD/src/lib/IJobsResult.ts -------------------------------------------------------------------------------- /src/lib/Queue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkohd/FigmaDither/HEAD/src/lib/Queue.ts -------------------------------------------------------------------------------- /src/lib/ditherImageWorker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkohd/FigmaDither/HEAD/src/lib/ditherImageWorker.ts -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkohd/FigmaDither/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /src/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkohd/FigmaDither/HEAD/src/typings.d.ts -------------------------------------------------------------------------------- /src/ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkohd/FigmaDither/HEAD/src/ui.css -------------------------------------------------------------------------------- /src/ui.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkohd/FigmaDither/HEAD/src/ui.html -------------------------------------------------------------------------------- /src/ui.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkohd/FigmaDither/HEAD/src/ui.ts -------------------------------------------------------------------------------- /src/worker/entry.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkohd/FigmaDither/HEAD/src/worker/entry.html -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkohd/FigmaDither/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkohd/FigmaDither/HEAD/webpack.config.js --------------------------------------------------------------------------------