|
@@ -3,6 +3,7 @@ import axios from "axios";
|
|
|
import { useAuth0 } from "@auth0/auth0-react";
|
|
|
import { useEffect, useState } from "react";
|
|
|
import { getSettingsOfUser } from "../Settings/settings.util";
|
|
|
+import { lighten, darken } from "@material-ui/core";
|
|
|
|
|
|
const serverURL = process.env.REACT_APP_SERVER_URL;
|
|
|
|
|
@@ -60,3 +61,35 @@ export const useCategoryIcons = () => {
|
|
|
|
|
|
return allCategoryIcons;
|
|
|
}
|
|
|
+
|
|
|
+export const reactSelectTheme = (givenTheme, muiTheme, secondary = false) => {
|
|
|
+ const muiPrimary = secondary ? muiTheme.palette.secondary.main : muiTheme.palette.primary.main;
|
|
|
+ const muiBackground = muiTheme.palette.background.default;
|
|
|
+ const isLight = muiTheme.palette.type === 'light';
|
|
|
+ const shade = (color, coefficient) => isLight ? darken(color, coefficient) : lighten(color, coefficient);
|
|
|
+ const shadeInverse = (color, coefficient) => isLight ? lighten(color, coefficient) : darken(color, coefficient);
|
|
|
+
|
|
|
+ givenTheme.colors = {
|
|
|
+ primary: muiPrimary,
|
|
|
+ primary75: shadeInverse(muiPrimary, 0.25),
|
|
|
+ primary50: shadeInverse(muiPrimary, 0.5),
|
|
|
+ primary25: shadeInverse(muiPrimary, 0.75),
|
|
|
+
|
|
|
+ danger: isLight ? muiTheme.palette.error.dark : muiTheme.palette.error.light,
|
|
|
+ dangerLight: isLight ? lighten(muiTheme.palette.error.light, .3) : darken(muiTheme.palette.error.dark, 0.3),
|
|
|
+
|
|
|
+ neutral0: muiBackground,
|
|
|
+ neutral5: shade(muiPrimary, 0.05),
|
|
|
+ neutral10: shade(muiBackground, 0.1) , // option background
|
|
|
+ neutral20: shade(muiPrimary, 0.2), // border and controls
|
|
|
+ neutral30: shade(muiPrimary, 0.3), // border on hover
|
|
|
+ neutral40: shade(muiPrimary, 0.4), // controls on hover
|
|
|
+ neutral50: shade(muiPrimary, 0.5), // placeholder
|
|
|
+ neutral60: shade(muiPrimary, 0.6), // control active
|
|
|
+ neutral70: shade(muiPrimary, 0.7),
|
|
|
+ neutral80: shade(muiBackground, 0.8), // option text & controls on focus+hover
|
|
|
+ neutral90: shade(muiPrimary, 0.9),
|
|
|
+ };
|
|
|
+ givenTheme.spacing.baseUnit = 4;
|
|
|
+ return givenTheme;
|
|
|
+}
|