feat: dark mode

This commit is contained in:
Ibrahima G. Coulibaly
2025-03-31 01:27:44 +00:00
parent e53642db31
commit d676383d22
26 changed files with 297 additions and 551 deletions

9
@types/theme.d.ts vendored Normal file
View File

@@ -0,0 +1,9 @@
import '@mui/material/styles';
declare module '@mui/material/styles' {
interface TypeBackground {
hover?: string;
lightSecondary?: string;
darkSecondary?: string;
}
}