added theme manager

This commit is contained in:
2025-04-28 16:13:41 +03:00
parent efc83c89aa
commit ba9062dbcf
11 changed files with 880 additions and 53 deletions

View File

@@ -1,14 +1,14 @@
import { createTheme, ThemeOptions } from '@mui/material/styles';
import { commonThemeOptions } from './theme-common';
const darkThemeOptions: ThemeOptions = {
export const darkThemeOptions: ThemeOptions = {
...commonThemeOptions,
palette: {
mode: 'dark',
primary: {
main: 'rgb(46, 61, 96)',
dark: 'rgb(5, 20, 53)',
light: 'rgb(45, 92, 201)',
main: 'rgb(100, 155, 240)',
dark: 'rgb(45, 92, 201)',
light: 'rgb(130, 185, 255)',
},
secondary: {
main: 'rgb(69, 173, 255)',