mirror of
https://github.com/hsjobeki/noogle.git
synced 2025-01-02 02:58:48 +03:00
19 lines
301 B
TypeScript
19 lines
301 B
TypeScript
import { ThemeOptions } from "@mui/material/styles";
|
|
|
|
const darkThemeOptions: ThemeOptions = {
|
|
palette: {
|
|
mode: "dark",
|
|
background: {
|
|
paper: "#031456"
|
|
},
|
|
primary: {
|
|
main: "#6586c8"
|
|
},
|
|
secondary: {
|
|
main: "#6ad541"
|
|
}
|
|
},
|
|
};
|
|
|
|
export { darkThemeOptions };
|