├── .gitignore ├── .npmignore ├── .nvmrc ├── LICENSE ├── README.md ├── colors.png ├── package.json ├── pnpm-lock.yaml ├── scripts ├── build-css-modules.js └── package.json ├── src ├── blackA.ts ├── dark.ts ├── index.ts ├── light.ts └── whiteA.ts ├── tsconfig.json ├── tsconfig.node.json ├── tsconfig.package.json └── tsup.config.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radix-ui/colors/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radix-ui/colors/HEAD/.npmignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 24 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radix-ui/colors/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radix-ui/colors/HEAD/README.md -------------------------------------------------------------------------------- /colors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radix-ui/colors/HEAD/colors.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radix-ui/colors/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radix-ui/colors/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /scripts/build-css-modules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radix-ui/colors/HEAD/scripts/build-css-modules.js -------------------------------------------------------------------------------- /scripts/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module" 3 | } 4 | -------------------------------------------------------------------------------- /src/blackA.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radix-ui/colors/HEAD/src/blackA.ts -------------------------------------------------------------------------------- /src/dark.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radix-ui/colors/HEAD/src/dark.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radix-ui/colors/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/light.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radix-ui/colors/HEAD/src/light.ts -------------------------------------------------------------------------------- /src/whiteA.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radix-ui/colors/HEAD/src/whiteA.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radix-ui/colors/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radix-ui/colors/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /tsconfig.package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radix-ui/colors/HEAD/tsconfig.package.json -------------------------------------------------------------------------------- /tsup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radix-ui/colors/HEAD/tsup.config.ts --------------------------------------------------------------------------------