Hi,
The background color of my app is changing in different environment when selected the dark theme. Attached the screenshot below.
In my development Environment its working correctly.
But in sandbox and production its behaving differently.
Its adding blue color in background when deployed in sandbox and production.
Here is my code where i am applying the theme configs.
import React from "react";
import ReactDOM from "react-dom";
import { FlagsProvider } from "@atlaskit/flag";
import { Provider } from "react-redux";
import { store } from "./Store";
import Main from "./Main";
import { setGlobalTheme } from "@atlaskit/tokens";
import { I18nProvider } from "./i18nUtil";
import "@atlaskit/css-reset"; //Do Not remove this import
setGlobalTheme({ light: "light", dark: "dark", colorMode: "auto" });
ReactDOM.render(
<React.StrictMode>
<Main />
</React.StrictMode>,
document.getElementById("root")
);
Any solutions ?
Thanks
Kiran.V