mirror of
https://github.com/hsjobeki/noogle.git
synced 2024-12-20 20:31:32 +03:00
17 lines
257 B
TypeScript
17 lines
257 B
TypeScript
import { ThemeOptions } from "@mui/material/styles";
|
|
|
|
const lightThemeOptions: ThemeOptions = {
|
|
palette: {
|
|
mode: "light",
|
|
primary: {
|
|
main: "#6586c8"
|
|
|
|
},
|
|
secondary: {
|
|
main: "#6ad541"
|
|
}
|
|
},
|
|
};
|
|
|
|
export { lightThemeOptions };
|