├── .gitignore ├── README.md ├── index.css ├── index.html ├── package.json ├── pnpm-lock.yaml ├── src ├── index.ts ├── plugin.ts └── runtime.ts ├── tsconfig.json └── vite.config.mts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdenty/tailwind-plugin-supercolors/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdenty/tailwind-plugin-supercolors/HEAD/README.md -------------------------------------------------------------------------------- /index.css: -------------------------------------------------------------------------------- 1 | @import "tailwindcss"; 2 | @plugin "./src"; 3 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdenty/tailwind-plugin-supercolors/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdenty/tailwind-plugin-supercolors/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdenty/tailwind-plugin-supercolors/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdenty/tailwind-plugin-supercolors/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdenty/tailwind-plugin-supercolors/HEAD/src/plugin.ts -------------------------------------------------------------------------------- /src/runtime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdenty/tailwind-plugin-supercolors/HEAD/src/runtime.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdenty/tailwind-plugin-supercolors/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdenty/tailwind-plugin-supercolors/HEAD/vite.config.mts --------------------------------------------------------------------------------