mirror of https://gitlab.com/ceda_ei/sonzai.git
Update theme
This commit is contained in:
parent
4269b3c3cf
commit
4ddcabb62a
17
index.js
17
index.js
|
@ -8,16 +8,23 @@ import { PersistGate } from "redux-persist/integration/react";
|
||||||
|
|
||||||
import configureStore from "./configureStore";
|
import configureStore from "./configureStore";
|
||||||
const { store, persistor } = configureStore();
|
const { store, persistor } = configureStore();
|
||||||
console.log(store);
|
|
||||||
console.log(persistor);
|
|
||||||
|
|
||||||
const theme = {
|
const theme = {
|
||||||
...DarkTheme,
|
...DarkTheme,
|
||||||
mode: "exact",
|
mode: "exact",
|
||||||
colors: {
|
colors: {
|
||||||
...DarkTheme.colors,
|
primary: "#ededed",
|
||||||
primary: "#e91e63",
|
accent: "#1a237e",
|
||||||
accent: "#3f51b5",
|
backdrop: "rgba(0, 0, 0, 0.5)",
|
||||||
|
background: "#000000",
|
||||||
|
disabled: "rgba(255, 255, 255, 0.38)",
|
||||||
|
error: "#CF6679",
|
||||||
|
notification: "#ff80ab",
|
||||||
|
onBackground: "#FFFFFF",
|
||||||
|
onSurface: "#FFFFFF",
|
||||||
|
placeholder: "rgba(255, 255, 255, 0.54)",
|
||||||
|
surface: "#121212",
|
||||||
|
text: "#ffffff"
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue