├── .env ├── .eslintrc.json ├── .gitignore ├── .nvmrc ├── LICENSE ├── README.md ├── next.config.js ├── package.json ├── pnpm-lock.yaml ├── public └── opengraph.jpg ├── src ├── Credits.tsx ├── app │ ├── analytics.tsx │ ├── colors │ │ ├── ColorBar.tsx │ │ ├── color-functions.ts │ │ └── main.tsx │ ├── globals.css │ ├── layout.tsx │ ├── page.module.css │ ├── page.tsx │ └── types.tsx └── colors.tsx └── tsconfig.json /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbyte/cohesive-colors/HEAD/.env -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbyte/cohesive-colors/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v20 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbyte/cohesive-colors/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbyte/cohesive-colors/HEAD/README.md -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbyte/cohesive-colors/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbyte/cohesive-colors/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbyte/cohesive-colors/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /public/opengraph.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbyte/cohesive-colors/HEAD/public/opengraph.jpg -------------------------------------------------------------------------------- /src/Credits.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbyte/cohesive-colors/HEAD/src/Credits.tsx -------------------------------------------------------------------------------- /src/app/analytics.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbyte/cohesive-colors/HEAD/src/app/analytics.tsx -------------------------------------------------------------------------------- /src/app/colors/ColorBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbyte/cohesive-colors/HEAD/src/app/colors/ColorBar.tsx -------------------------------------------------------------------------------- /src/app/colors/color-functions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbyte/cohesive-colors/HEAD/src/app/colors/color-functions.ts -------------------------------------------------------------------------------- /src/app/colors/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbyte/cohesive-colors/HEAD/src/app/colors/main.tsx -------------------------------------------------------------------------------- /src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbyte/cohesive-colors/HEAD/src/app/globals.css -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbyte/cohesive-colors/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/page.module.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbyte/cohesive-colors/HEAD/src/app/page.tsx -------------------------------------------------------------------------------- /src/app/types.tsx: -------------------------------------------------------------------------------- 1 | export type ColorSet = string[]; 2 | -------------------------------------------------------------------------------- /src/colors.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbyte/cohesive-colors/HEAD/src/colors.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierbyte/cohesive-colors/HEAD/tsconfig.json --------------------------------------------------------------------------------