├── .gitignore ├── .npmrc ├── .prettierignore ├── .prettierrc ├── CHANGELOG.md ├── LICENSE ├── README.md ├── eslint.config.js ├── jsr.json ├── package.json ├── src ├── app.d.ts ├── app.html ├── index.test.ts ├── lib │ ├── generateColor.ts │ ├── hexToHSL.ts │ ├── hexToRGB.ts │ ├── hslToHex.ts │ ├── index.ts │ ├── tailwindcssPaletteGenerator.ts │ └── types.ts └── routes │ └── +page.svelte ├── static └── favicon.png ├── svelte.config.js ├── tsconfig.json ├── tsup.cjs.minified.ts ├── tsup.esm.minified.ts └── vite.config.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobthered/tailwindcss-palette-generator/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobthered/tailwindcss-palette-generator/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobthered/tailwindcss-palette-generator/HEAD/.prettierrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobthered/tailwindcss-palette-generator/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobthered/tailwindcss-palette-generator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobthered/tailwindcss-palette-generator/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobthered/tailwindcss-palette-generator/HEAD/eslint.config.js -------------------------------------------------------------------------------- /jsr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobthered/tailwindcss-palette-generator/HEAD/jsr.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobthered/tailwindcss-palette-generator/HEAD/package.json -------------------------------------------------------------------------------- /src/app.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobthered/tailwindcss-palette-generator/HEAD/src/app.d.ts -------------------------------------------------------------------------------- /src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobthered/tailwindcss-palette-generator/HEAD/src/app.html -------------------------------------------------------------------------------- /src/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobthered/tailwindcss-palette-generator/HEAD/src/index.test.ts -------------------------------------------------------------------------------- /src/lib/generateColor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobthered/tailwindcss-palette-generator/HEAD/src/lib/generateColor.ts -------------------------------------------------------------------------------- /src/lib/hexToHSL.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobthered/tailwindcss-palette-generator/HEAD/src/lib/hexToHSL.ts -------------------------------------------------------------------------------- /src/lib/hexToRGB.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobthered/tailwindcss-palette-generator/HEAD/src/lib/hexToRGB.ts -------------------------------------------------------------------------------- /src/lib/hslToHex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobthered/tailwindcss-palette-generator/HEAD/src/lib/hslToHex.ts -------------------------------------------------------------------------------- /src/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobthered/tailwindcss-palette-generator/HEAD/src/lib/index.ts -------------------------------------------------------------------------------- /src/lib/tailwindcssPaletteGenerator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobthered/tailwindcss-palette-generator/HEAD/src/lib/tailwindcssPaletteGenerator.ts -------------------------------------------------------------------------------- /src/lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobthered/tailwindcss-palette-generator/HEAD/src/lib/types.ts -------------------------------------------------------------------------------- /src/routes/+page.svelte: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobthered/tailwindcss-palette-generator/HEAD/static/favicon.png -------------------------------------------------------------------------------- /svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobthered/tailwindcss-palette-generator/HEAD/svelte.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobthered/tailwindcss-palette-generator/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsup.cjs.minified.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobthered/tailwindcss-palette-generator/HEAD/tsup.cjs.minified.ts -------------------------------------------------------------------------------- /tsup.esm.minified.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobthered/tailwindcss-palette-generator/HEAD/tsup.esm.minified.ts -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobthered/tailwindcss-palette-generator/HEAD/vite.config.ts --------------------------------------------------------------------------------