I have this file for colors in my app:
export default Colors = { dark: "black", medium: "#110c11", light: "#1a1110", icon: "white", iconG: "grey" };
and in another file, I have class component with these states:
this.state = { darkTheme: true, whiteTheme: false, RedTheme: false };
i want to manipulate Color in Colors.js based on the boolean values of these themes. for example if whiteTheme: true, then i want to change Colors according to white theme.