A modern web application that allows users to upload images and selectively recolor specific colors within the image. The tool provides an intuitive interface for selecting colors from the image and changing them to new colors with real-time preview.
- Image upload and processing
- Color quantization and extraction from images
- Interactive color selection and editing
- Similar color detection and batch recoloring
- Real-time image preview
- Processing progress indication
- Undo functionality
- Download recolored images
- Framework: Nuxt 3 (Vue.js)
- UI Components: Nuxt UI
- Styling: Tailwind CSS
- Language: TypeScript
- Image Processing: Canvas API
Make sure to install dependencies:
# npm
npm install
# pnpm
pnpm install
# yarn
yarn install
# bun
bun installStart the development server on http://localhost:3000:
# npm
npm run dev
# pnpm
pnpm dev
# yarn
yarn dev
# bun
bun run devBuild the application for production:
# npm
npm run build
# pnpm
pnpm build
# yarn
yarn build
# bun
bun run buildLocally preview production build:
# npm
npm run preview
# pnpm
pnpm preview
# yarn
yarn preview
# bun
bun run previewCheck out the deployment documentation for more information.