├── .env.example ├── .eslintrc.json ├── .gitignore ├── .vscode └── settings.json ├── LICENCE.md ├── README.md ├── app ├── (browse) │ ├── _components │ │ ├── color-palette.tsx │ │ ├── footer.tsx │ │ └── navbar.tsx │ ├── custom-form │ │ └── page.tsx │ ├── layout.tsx │ └── page.tsx ├── globals.css ├── layout.tsx ├── opengraph-image.jpg └── robots.ts ├── assets └── fonts │ ├── CalSans-SemiBold.ttf │ ├── CalSans-SemiBold.woff │ ├── CalSans-SemiBold.woff2 │ ├── Inter-Bold.ttf │ └── Inter-Regular.ttf ├── components.json ├── components ├── analytics.tsx ├── icons.tsx ├── old │ ├── code-preview.tsx │ ├── copy-button.tsx │ ├── customization-form.tsx │ ├── input-color-picker.tsx │ └── tabs-code-viewer.tsx ├── tailwind-indicator.tsx ├── theme-provider.tsx ├── ui │ ├── button.tsx │ ├── drawer.tsx │ ├── dropdown-menu.tsx │ ├── input.tsx │ ├── scroll-area.tsx │ ├── select.tsx │ ├── skeleton.tsx │ ├── table.tsx │ ├── tabs.tsx │ ├── toast.tsx │ ├── toaster.tsx │ ├── tooltip.tsx │ └── use-toast.ts └── v2 │ ├── color-selector.tsx │ ├── color-table.tsx │ ├── nav-menu.tsx │ └── theme-toggle.tsx ├── config ├── colors.ts └── site.ts ├── env.mjs ├── hooks ├── use-lock-body.ts ├── use-mounted.ts └── use-palette.ts ├── lib ├── colors.ts └── utils.ts ├── next.config.js ├── package.json ├── pnpm-lock.yaml ├── postcss.config.js ├── public ├── android-chrome-192x192.png ├── android-chrome-512x512.png ├── apple-touch-icon.png ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico ├── fonts │ ├── satoshi.ttf │ ├── satoshi.woff │ └── satoshi.woff2 ├── og.jpg └── site.webmanifest ├── registry └── colors.ts ├── store └── useColors.ts ├── styles └── globals.css ├── tailwind.config.js ├── tsconfig.json └── types ├── colors.ts └── index.d.ts /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickasmt/ui-colorgen/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickasmt/ui-colorgen/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickasmt/ui-colorgen/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickasmt/ui-colorgen/HEAD/LICENCE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickasmt/ui-colorgen/HEAD/README.md -------------------------------------------------------------------------------- /app/(browse)/_components/color-palette.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickasmt/ui-colorgen/HEAD/app/(browse)/_components/color-palette.tsx -------------------------------------------------------------------------------- /app/(browse)/_components/footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickasmt/ui-colorgen/HEAD/app/(browse)/_components/footer.tsx -------------------------------------------------------------------------------- /app/(browse)/_components/navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickasmt/ui-colorgen/HEAD/app/(browse)/_components/navbar.tsx -------------------------------------------------------------------------------- /app/(browse)/custom-form/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickasmt/ui-colorgen/HEAD/app/(browse)/custom-form/page.tsx -------------------------------------------------------------------------------- /app/(browse)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickasmt/ui-colorgen/HEAD/app/(browse)/layout.tsx -------------------------------------------------------------------------------- /app/(browse)/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickasmt/ui-colorgen/HEAD/app/(browse)/page.tsx -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickasmt/ui-colorgen/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickasmt/ui-colorgen/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /app/opengraph-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickasmt/ui-colorgen/HEAD/app/opengraph-image.jpg -------------------------------------------------------------------------------- /app/robots.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickasmt/ui-colorgen/HEAD/app/robots.ts -------------------------------------------------------------------------------- /assets/fonts/CalSans-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickasmt/ui-colorgen/HEAD/assets/fonts/CalSans-SemiBold.ttf -------------------------------------------------------------------------------- /assets/fonts/CalSans-SemiBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickasmt/ui-colorgen/HEAD/assets/fonts/CalSans-SemiBold.woff -------------------------------------------------------------------------------- /assets/fonts/CalSans-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickasmt/ui-colorgen/HEAD/assets/fonts/CalSans-SemiBold.woff2 -------------------------------------------------------------------------------- /assets/fonts/Inter-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickasmt/ui-colorgen/HEAD/assets/fonts/Inter-Bold.ttf -------------------------------------------------------------------------------- /assets/fonts/Inter-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickasmt/ui-colorgen/HEAD/assets/fonts/Inter-Regular.ttf -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickasmt/ui-colorgen/HEAD/components.json -------------------------------------------------------------------------------- /components/analytics.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickasmt/ui-colorgen/HEAD/components/analytics.tsx -------------------------------------------------------------------------------- /components/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickasmt/ui-colorgen/HEAD/components/icons.tsx -------------------------------------------------------------------------------- /components/old/code-preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickasmt/ui-colorgen/HEAD/components/old/code-preview.tsx -------------------------------------------------------------------------------- /components/old/copy-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickasmt/ui-colorgen/HEAD/components/old/copy-button.tsx -------------------------------------------------------------------------------- /components/old/customization-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickasmt/ui-colorgen/HEAD/components/old/customization-form.tsx -------------------------------------------------------------------------------- /components/old/input-color-picker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickasmt/ui-colorgen/HEAD/components/old/input-color-picker.tsx -------------------------------------------------------------------------------- /components/old/tabs-code-viewer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickasmt/ui-colorgen/HEAD/components/old/tabs-code-viewer.tsx -------------------------------------------------------------------------------- /components/tailwind-indicator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickasmt/ui-colorgen/HEAD/components/tailwind-indicator.tsx -------------------------------------------------------------------------------- /components/theme-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickasmt/ui-colorgen/HEAD/components/theme-provider.tsx -------------------------------------------------------------------------------- /components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickasmt/ui-colorgen/HEAD/components/ui/button.tsx -------------------------------------------------------------------------------- /components/ui/drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickasmt/ui-colorgen/HEAD/components/ui/drawer.tsx -------------------------------------------------------------------------------- /components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickasmt/ui-colorgen/HEAD/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickasmt/ui-colorgen/HEAD/components/ui/input.tsx -------------------------------------------------------------------------------- /components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickasmt/ui-colorgen/HEAD/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickasmt/ui-colorgen/HEAD/components/ui/select.tsx -------------------------------------------------------------------------------- /components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickasmt/ui-colorgen/HEAD/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickasmt/ui-colorgen/HEAD/components/ui/table.tsx -------------------------------------------------------------------------------- /components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickasmt/ui-colorgen/HEAD/components/ui/tabs.tsx -------------------------------------------------------------------------------- /components/ui/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickasmt/ui-colorgen/HEAD/components/ui/toast.tsx -------------------------------------------------------------------------------- /components/ui/toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickasmt/ui-colorgen/HEAD/components/ui/toaster.tsx -------------------------------------------------------------------------------- /components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickasmt/ui-colorgen/HEAD/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /components/ui/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickasmt/ui-colorgen/HEAD/components/ui/use-toast.ts -------------------------------------------------------------------------------- /components/v2/color-selector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickasmt/ui-colorgen/HEAD/components/v2/color-selector.tsx -------------------------------------------------------------------------------- /components/v2/color-table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickasmt/ui-colorgen/HEAD/components/v2/color-table.tsx -------------------------------------------------------------------------------- /components/v2/nav-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickasmt/ui-colorgen/HEAD/components/v2/nav-menu.tsx -------------------------------------------------------------------------------- /components/v2/theme-toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickasmt/ui-colorgen/HEAD/components/v2/theme-toggle.tsx -------------------------------------------------------------------------------- /config/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickasmt/ui-colorgen/HEAD/config/colors.ts -------------------------------------------------------------------------------- /config/site.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickasmt/ui-colorgen/HEAD/config/site.ts -------------------------------------------------------------------------------- /env.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickasmt/ui-colorgen/HEAD/env.mjs -------------------------------------------------------------------------------- /hooks/use-lock-body.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickasmt/ui-colorgen/HEAD/hooks/use-lock-body.ts -------------------------------------------------------------------------------- /hooks/use-mounted.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickasmt/ui-colorgen/HEAD/hooks/use-mounted.ts -------------------------------------------------------------------------------- /hooks/use-palette.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickasmt/ui-colorgen/HEAD/hooks/use-palette.ts -------------------------------------------------------------------------------- /lib/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickasmt/ui-colorgen/HEAD/lib/colors.ts -------------------------------------------------------------------------------- /lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickasmt/ui-colorgen/HEAD/lib/utils.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickasmt/ui-colorgen/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickasmt/ui-colorgen/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickasmt/ui-colorgen/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickasmt/ui-colorgen/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickasmt/ui-colorgen/HEAD/public/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickasmt/ui-colorgen/HEAD/public/android-chrome-512x512.png -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickasmt/ui-colorgen/HEAD/public/apple-touch-icon.png -------------------------------------------------------------------------------- /public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickasmt/ui-colorgen/HEAD/public/favicon-16x16.png -------------------------------------------------------------------------------- /public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickasmt/ui-colorgen/HEAD/public/favicon-32x32.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickasmt/ui-colorgen/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/fonts/satoshi.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickasmt/ui-colorgen/HEAD/public/fonts/satoshi.ttf -------------------------------------------------------------------------------- /public/fonts/satoshi.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickasmt/ui-colorgen/HEAD/public/fonts/satoshi.woff -------------------------------------------------------------------------------- /public/fonts/satoshi.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickasmt/ui-colorgen/HEAD/public/fonts/satoshi.woff2 -------------------------------------------------------------------------------- /public/og.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickasmt/ui-colorgen/HEAD/public/og.jpg -------------------------------------------------------------------------------- /public/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickasmt/ui-colorgen/HEAD/public/site.webmanifest -------------------------------------------------------------------------------- /registry/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickasmt/ui-colorgen/HEAD/registry/colors.ts -------------------------------------------------------------------------------- /store/useColors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickasmt/ui-colorgen/HEAD/store/useColors.ts -------------------------------------------------------------------------------- /styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickasmt/ui-colorgen/HEAD/styles/globals.css -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickasmt/ui-colorgen/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickasmt/ui-colorgen/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickasmt/ui-colorgen/HEAD/types/colors.ts -------------------------------------------------------------------------------- /types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickasmt/ui-colorgen/HEAD/types/index.d.ts --------------------------------------------------------------------------------