import SyncStorage from "sync-storage"; const global = { foreground: "#9f0" }; const themes = { light: { background: "#fff" }, dark: { logo: "https://f0ck.me/s/img/f0ckme.png", background: "#212529" } }; const theme = { ...themes[SyncStorage.get("theme") ? SyncStorage.get("theme") : "dark"], ...global }; export default theme;