├── .gitignore ├── README.md ├── docs ├── CNAME └── index.html └── react-frontend ├── .dockerignore ├── .gitignore ├── Dockerfile.dev ├── Dockerfile.prod ├── README.md ├── nginx-react-router.conf ├── package-lock.json ├── package.json ├── public ├── android-chrome-192x192.png ├── android-chrome-512x512.png ├── apple-touch-icon.png ├── colors.json ├── cone_sensitivities.svg ├── cool_white_flourescent.svg ├── exit.svg ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico ├── fonts │ ├── robotomono-bold-webfont.woff │ ├── robotomono-bold-webfont.woff2 │ ├── robotomono-regular-webfont.woff │ └── robotomono-regular-webfont.woff2 ├── hamburger.svg ├── index.html ├── logo.svg ├── manifest.json └── robots.txt ├── src ├── App.scss ├── App.test.tsx ├── App.tsx ├── components │ ├── About │ │ ├── About.tsx │ │ └── color_selection.gif │ ├── AllColors │ │ ├── AllColors.tsx │ │ ├── Color.tsx │ │ └── ColorGrid.tsx │ ├── Footer.tsx │ ├── Header.tsx │ ├── Judge │ │ ├── ColorChoices.tsx │ │ ├── ColorResult.tsx │ │ ├── ColorResults.tsx │ │ ├── Judge.tsx │ │ ├── JudgeButton.tsx │ │ ├── NextButton.tsx │ │ └── Results.tsx │ ├── Leaderboard │ │ ├── Leaderboard.tsx │ │ └── RankedColor.tsx │ └── Nav │ │ └── Nav.tsx ├── connector │ └── connector.ts ├── fonts │ ├── robotomono-bold-webfont.woff │ ├── robotomono-bold-webfont.woff2 │ ├── robotomono-regular-webfont.woff │ └── robotomono-regular-webfont.woff2 ├── index.scss ├── index.tsx ├── misc │ ├── brightness.ts │ └── faces.ts ├── react-app-env.d.ts ├── serviceWorker.ts ├── services │ └── staticDataService.ts ├── setupTests.ts ├── store │ ├── actions.ts │ ├── reducer.ts │ └── types.ts └── style │ └── style.ts ├── static └── colorcontroversy │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── apple-touch-icon.png │ ├── asset-manifest.json │ ├── colors.json │ ├── cone_sensitivities.svg │ ├── cool_white_flourescent.svg │ ├── exit.svg │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ ├── fonts │ ├── robotomono-bold-webfont.woff │ ├── robotomono-bold-webfont.woff2 │ ├── robotomono-regular-webfont.woff │ └── robotomono-regular-webfont.woff2 │ ├── hamburger.svg │ ├── index.html │ ├── logo.svg │ ├── manifest.json │ ├── robots.txt │ └── static │ ├── css │ ├── main.d1a9ed8d.css │ └── main.d1a9ed8d.css.map │ ├── js │ ├── main.3b91b4e4.js │ ├── main.3b91b4e4.js.LICENSE.txt │ └── main.3b91b4e4.js.map │ └── media │ ├── color_selection.1e4d5547f02ff49723eb.gif │ ├── robotomono-bold-webfont.9ccb5458464b65f14807.woff │ ├── robotomono-bold-webfont.a9017c1b109f183fad5d.woff2 │ ├── robotomono-regular-webfont.552fa2321d36916667e3.woff │ └── robotomono-regular-webfont.c501f81fc98ee557ebac.woff2 └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinovitch61/color-controversy/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinovitch61/color-controversy/HEAD/README.md -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | colorcontroversy.com -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinovitch61/color-controversy/HEAD/docs/index.html -------------------------------------------------------------------------------- /react-frontend/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinovitch61/color-controversy/HEAD/react-frontend/.dockerignore -------------------------------------------------------------------------------- /react-frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinovitch61/color-controversy/HEAD/react-frontend/.gitignore -------------------------------------------------------------------------------- /react-frontend/Dockerfile.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinovitch61/color-controversy/HEAD/react-frontend/Dockerfile.dev -------------------------------------------------------------------------------- /react-frontend/Dockerfile.prod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinovitch61/color-controversy/HEAD/react-frontend/Dockerfile.prod -------------------------------------------------------------------------------- /react-frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinovitch61/color-controversy/HEAD/react-frontend/README.md -------------------------------------------------------------------------------- /react-frontend/nginx-react-router.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinovitch61/color-controversy/HEAD/react-frontend/nginx-react-router.conf -------------------------------------------------------------------------------- /react-frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinovitch61/color-controversy/HEAD/react-frontend/package-lock.json -------------------------------------------------------------------------------- /react-frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinovitch61/color-controversy/HEAD/react-frontend/package.json -------------------------------------------------------------------------------- /react-frontend/public/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinovitch61/color-controversy/HEAD/react-frontend/public/android-chrome-192x192.png -------------------------------------------------------------------------------- /react-frontend/public/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinovitch61/color-controversy/HEAD/react-frontend/public/android-chrome-512x512.png -------------------------------------------------------------------------------- /react-frontend/public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinovitch61/color-controversy/HEAD/react-frontend/public/apple-touch-icon.png -------------------------------------------------------------------------------- /react-frontend/public/colors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinovitch61/color-controversy/HEAD/react-frontend/public/colors.json -------------------------------------------------------------------------------- /react-frontend/public/cone_sensitivities.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinovitch61/color-controversy/HEAD/react-frontend/public/cone_sensitivities.svg -------------------------------------------------------------------------------- /react-frontend/public/cool_white_flourescent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinovitch61/color-controversy/HEAD/react-frontend/public/cool_white_flourescent.svg -------------------------------------------------------------------------------- /react-frontend/public/exit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinovitch61/color-controversy/HEAD/react-frontend/public/exit.svg -------------------------------------------------------------------------------- /react-frontend/public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinovitch61/color-controversy/HEAD/react-frontend/public/favicon-16x16.png -------------------------------------------------------------------------------- /react-frontend/public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinovitch61/color-controversy/HEAD/react-frontend/public/favicon-32x32.png -------------------------------------------------------------------------------- /react-frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinovitch61/color-controversy/HEAD/react-frontend/public/favicon.ico -------------------------------------------------------------------------------- /react-frontend/public/fonts/robotomono-bold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinovitch61/color-controversy/HEAD/react-frontend/public/fonts/robotomono-bold-webfont.woff -------------------------------------------------------------------------------- /react-frontend/public/fonts/robotomono-bold-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinovitch61/color-controversy/HEAD/react-frontend/public/fonts/robotomono-bold-webfont.woff2 -------------------------------------------------------------------------------- /react-frontend/public/fonts/robotomono-regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinovitch61/color-controversy/HEAD/react-frontend/public/fonts/robotomono-regular-webfont.woff -------------------------------------------------------------------------------- /react-frontend/public/fonts/robotomono-regular-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinovitch61/color-controversy/HEAD/react-frontend/public/fonts/robotomono-regular-webfont.woff2 -------------------------------------------------------------------------------- /react-frontend/public/hamburger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinovitch61/color-controversy/HEAD/react-frontend/public/hamburger.svg -------------------------------------------------------------------------------- /react-frontend/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinovitch61/color-controversy/HEAD/react-frontend/public/index.html -------------------------------------------------------------------------------- /react-frontend/public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinovitch61/color-controversy/HEAD/react-frontend/public/logo.svg -------------------------------------------------------------------------------- /react-frontend/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinovitch61/color-controversy/HEAD/react-frontend/public/manifest.json -------------------------------------------------------------------------------- /react-frontend/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinovitch61/color-controversy/HEAD/react-frontend/public/robots.txt -------------------------------------------------------------------------------- /react-frontend/src/App.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinovitch61/color-controversy/HEAD/react-frontend/src/App.scss -------------------------------------------------------------------------------- /react-frontend/src/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinovitch61/color-controversy/HEAD/react-frontend/src/App.test.tsx -------------------------------------------------------------------------------- /react-frontend/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinovitch61/color-controversy/HEAD/react-frontend/src/App.tsx -------------------------------------------------------------------------------- /react-frontend/src/components/About/About.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinovitch61/color-controversy/HEAD/react-frontend/src/components/About/About.tsx -------------------------------------------------------------------------------- /react-frontend/src/components/About/color_selection.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinovitch61/color-controversy/HEAD/react-frontend/src/components/About/color_selection.gif -------------------------------------------------------------------------------- /react-frontend/src/components/AllColors/AllColors.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinovitch61/color-controversy/HEAD/react-frontend/src/components/AllColors/AllColors.tsx -------------------------------------------------------------------------------- /react-frontend/src/components/AllColors/Color.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinovitch61/color-controversy/HEAD/react-frontend/src/components/AllColors/Color.tsx -------------------------------------------------------------------------------- /react-frontend/src/components/AllColors/ColorGrid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinovitch61/color-controversy/HEAD/react-frontend/src/components/AllColors/ColorGrid.tsx -------------------------------------------------------------------------------- /react-frontend/src/components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinovitch61/color-controversy/HEAD/react-frontend/src/components/Footer.tsx -------------------------------------------------------------------------------- /react-frontend/src/components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinovitch61/color-controversy/HEAD/react-frontend/src/components/Header.tsx -------------------------------------------------------------------------------- /react-frontend/src/components/Judge/ColorChoices.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinovitch61/color-controversy/HEAD/react-frontend/src/components/Judge/ColorChoices.tsx -------------------------------------------------------------------------------- /react-frontend/src/components/Judge/ColorResult.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinovitch61/color-controversy/HEAD/react-frontend/src/components/Judge/ColorResult.tsx -------------------------------------------------------------------------------- /react-frontend/src/components/Judge/ColorResults.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinovitch61/color-controversy/HEAD/react-frontend/src/components/Judge/ColorResults.tsx -------------------------------------------------------------------------------- /react-frontend/src/components/Judge/Judge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinovitch61/color-controversy/HEAD/react-frontend/src/components/Judge/Judge.tsx -------------------------------------------------------------------------------- /react-frontend/src/components/Judge/JudgeButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinovitch61/color-controversy/HEAD/react-frontend/src/components/Judge/JudgeButton.tsx -------------------------------------------------------------------------------- /react-frontend/src/components/Judge/NextButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinovitch61/color-controversy/HEAD/react-frontend/src/components/Judge/NextButton.tsx -------------------------------------------------------------------------------- /react-frontend/src/components/Judge/Results.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinovitch61/color-controversy/HEAD/react-frontend/src/components/Judge/Results.tsx -------------------------------------------------------------------------------- /react-frontend/src/components/Leaderboard/Leaderboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinovitch61/color-controversy/HEAD/react-frontend/src/components/Leaderboard/Leaderboard.tsx -------------------------------------------------------------------------------- /react-frontend/src/components/Leaderboard/RankedColor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinovitch61/color-controversy/HEAD/react-frontend/src/components/Leaderboard/RankedColor.tsx -------------------------------------------------------------------------------- /react-frontend/src/components/Nav/Nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinovitch61/color-controversy/HEAD/react-frontend/src/components/Nav/Nav.tsx -------------------------------------------------------------------------------- /react-frontend/src/connector/connector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinovitch61/color-controversy/HEAD/react-frontend/src/connector/connector.ts -------------------------------------------------------------------------------- /react-frontend/src/fonts/robotomono-bold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinovitch61/color-controversy/HEAD/react-frontend/src/fonts/robotomono-bold-webfont.woff -------------------------------------------------------------------------------- /react-frontend/src/fonts/robotomono-bold-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinovitch61/color-controversy/HEAD/react-frontend/src/fonts/robotomono-bold-webfont.woff2 -------------------------------------------------------------------------------- /react-frontend/src/fonts/robotomono-regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinovitch61/color-controversy/HEAD/react-frontend/src/fonts/robotomono-regular-webfont.woff -------------------------------------------------------------------------------- /react-frontend/src/fonts/robotomono-regular-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinovitch61/color-controversy/HEAD/react-frontend/src/fonts/robotomono-regular-webfont.woff2 -------------------------------------------------------------------------------- /react-frontend/src/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinovitch61/color-controversy/HEAD/react-frontend/src/index.scss -------------------------------------------------------------------------------- /react-frontend/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinovitch61/color-controversy/HEAD/react-frontend/src/index.tsx -------------------------------------------------------------------------------- /react-frontend/src/misc/brightness.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinovitch61/color-controversy/HEAD/react-frontend/src/misc/brightness.ts -------------------------------------------------------------------------------- /react-frontend/src/misc/faces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinovitch61/color-controversy/HEAD/react-frontend/src/misc/faces.ts -------------------------------------------------------------------------------- /react-frontend/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /react-frontend/src/serviceWorker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinovitch61/color-controversy/HEAD/react-frontend/src/serviceWorker.ts -------------------------------------------------------------------------------- /react-frontend/src/services/staticDataService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinovitch61/color-controversy/HEAD/react-frontend/src/services/staticDataService.ts -------------------------------------------------------------------------------- /react-frontend/src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinovitch61/color-controversy/HEAD/react-frontend/src/setupTests.ts -------------------------------------------------------------------------------- /react-frontend/src/store/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinovitch61/color-controversy/HEAD/react-frontend/src/store/actions.ts -------------------------------------------------------------------------------- /react-frontend/src/store/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinovitch61/color-controversy/HEAD/react-frontend/src/store/reducer.ts -------------------------------------------------------------------------------- /react-frontend/src/store/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinovitch61/color-controversy/HEAD/react-frontend/src/store/types.ts -------------------------------------------------------------------------------- /react-frontend/src/style/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinovitch61/color-controversy/HEAD/react-frontend/src/style/style.ts -------------------------------------------------------------------------------- /react-frontend/static/colorcontroversy/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinovitch61/color-controversy/HEAD/react-frontend/static/colorcontroversy/android-chrome-192x192.png -------------------------------------------------------------------------------- /react-frontend/static/colorcontroversy/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinovitch61/color-controversy/HEAD/react-frontend/static/colorcontroversy/android-chrome-512x512.png -------------------------------------------------------------------------------- /react-frontend/static/colorcontroversy/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinovitch61/color-controversy/HEAD/react-frontend/static/colorcontroversy/apple-touch-icon.png -------------------------------------------------------------------------------- /react-frontend/static/colorcontroversy/asset-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinovitch61/color-controversy/HEAD/react-frontend/static/colorcontroversy/asset-manifest.json -------------------------------------------------------------------------------- /react-frontend/static/colorcontroversy/colors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinovitch61/color-controversy/HEAD/react-frontend/static/colorcontroversy/colors.json -------------------------------------------------------------------------------- /react-frontend/static/colorcontroversy/cone_sensitivities.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinovitch61/color-controversy/HEAD/react-frontend/static/colorcontroversy/cone_sensitivities.svg -------------------------------------------------------------------------------- /react-frontend/static/colorcontroversy/cool_white_flourescent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinovitch61/color-controversy/HEAD/react-frontend/static/colorcontroversy/cool_white_flourescent.svg -------------------------------------------------------------------------------- /react-frontend/static/colorcontroversy/exit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinovitch61/color-controversy/HEAD/react-frontend/static/colorcontroversy/exit.svg -------------------------------------------------------------------------------- /react-frontend/static/colorcontroversy/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinovitch61/color-controversy/HEAD/react-frontend/static/colorcontroversy/favicon-16x16.png -------------------------------------------------------------------------------- /react-frontend/static/colorcontroversy/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinovitch61/color-controversy/HEAD/react-frontend/static/colorcontroversy/favicon-32x32.png -------------------------------------------------------------------------------- /react-frontend/static/colorcontroversy/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinovitch61/color-controversy/HEAD/react-frontend/static/colorcontroversy/favicon.ico -------------------------------------------------------------------------------- /react-frontend/static/colorcontroversy/fonts/robotomono-bold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinovitch61/color-controversy/HEAD/react-frontend/static/colorcontroversy/fonts/robotomono-bold-webfont.woff -------------------------------------------------------------------------------- /react-frontend/static/colorcontroversy/fonts/robotomono-bold-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinovitch61/color-controversy/HEAD/react-frontend/static/colorcontroversy/fonts/robotomono-bold-webfont.woff2 -------------------------------------------------------------------------------- /react-frontend/static/colorcontroversy/fonts/robotomono-regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinovitch61/color-controversy/HEAD/react-frontend/static/colorcontroversy/fonts/robotomono-regular-webfont.woff -------------------------------------------------------------------------------- /react-frontend/static/colorcontroversy/fonts/robotomono-regular-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinovitch61/color-controversy/HEAD/react-frontend/static/colorcontroversy/fonts/robotomono-regular-webfont.woff2 -------------------------------------------------------------------------------- /react-frontend/static/colorcontroversy/hamburger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinovitch61/color-controversy/HEAD/react-frontend/static/colorcontroversy/hamburger.svg -------------------------------------------------------------------------------- /react-frontend/static/colorcontroversy/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinovitch61/color-controversy/HEAD/react-frontend/static/colorcontroversy/index.html -------------------------------------------------------------------------------- /react-frontend/static/colorcontroversy/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinovitch61/color-controversy/HEAD/react-frontend/static/colorcontroversy/logo.svg -------------------------------------------------------------------------------- /react-frontend/static/colorcontroversy/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinovitch61/color-controversy/HEAD/react-frontend/static/colorcontroversy/manifest.json -------------------------------------------------------------------------------- /react-frontend/static/colorcontroversy/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinovitch61/color-controversy/HEAD/react-frontend/static/colorcontroversy/robots.txt -------------------------------------------------------------------------------- /react-frontend/static/colorcontroversy/static/css/main.d1a9ed8d.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinovitch61/color-controversy/HEAD/react-frontend/static/colorcontroversy/static/css/main.d1a9ed8d.css -------------------------------------------------------------------------------- /react-frontend/static/colorcontroversy/static/css/main.d1a9ed8d.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinovitch61/color-controversy/HEAD/react-frontend/static/colorcontroversy/static/css/main.d1a9ed8d.css.map -------------------------------------------------------------------------------- /react-frontend/static/colorcontroversy/static/js/main.3b91b4e4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinovitch61/color-controversy/HEAD/react-frontend/static/colorcontroversy/static/js/main.3b91b4e4.js -------------------------------------------------------------------------------- /react-frontend/static/colorcontroversy/static/js/main.3b91b4e4.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinovitch61/color-controversy/HEAD/react-frontend/static/colorcontroversy/static/js/main.3b91b4e4.js.LICENSE.txt -------------------------------------------------------------------------------- /react-frontend/static/colorcontroversy/static/js/main.3b91b4e4.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinovitch61/color-controversy/HEAD/react-frontend/static/colorcontroversy/static/js/main.3b91b4e4.js.map -------------------------------------------------------------------------------- /react-frontend/static/colorcontroversy/static/media/color_selection.1e4d5547f02ff49723eb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinovitch61/color-controversy/HEAD/react-frontend/static/colorcontroversy/static/media/color_selection.1e4d5547f02ff49723eb.gif -------------------------------------------------------------------------------- /react-frontend/static/colorcontroversy/static/media/robotomono-bold-webfont.9ccb5458464b65f14807.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinovitch61/color-controversy/HEAD/react-frontend/static/colorcontroversy/static/media/robotomono-bold-webfont.9ccb5458464b65f14807.woff -------------------------------------------------------------------------------- /react-frontend/static/colorcontroversy/static/media/robotomono-bold-webfont.a9017c1b109f183fad5d.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinovitch61/color-controversy/HEAD/react-frontend/static/colorcontroversy/static/media/robotomono-bold-webfont.a9017c1b109f183fad5d.woff2 -------------------------------------------------------------------------------- /react-frontend/static/colorcontroversy/static/media/robotomono-regular-webfont.552fa2321d36916667e3.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinovitch61/color-controversy/HEAD/react-frontend/static/colorcontroversy/static/media/robotomono-regular-webfont.552fa2321d36916667e3.woff -------------------------------------------------------------------------------- /react-frontend/static/colorcontroversy/static/media/robotomono-regular-webfont.c501f81fc98ee557ebac.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinovitch61/color-controversy/HEAD/react-frontend/static/colorcontroversy/static/media/robotomono-regular-webfont.c501f81fc98ee557ebac.woff2 -------------------------------------------------------------------------------- /react-frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinovitch61/color-controversy/HEAD/react-frontend/tsconfig.json --------------------------------------------------------------------------------