mirror of
https://github.com/chenasraf/dotfiles.git
synced 2026-05-17 17:28:07 +00:00
27 lines
624 B
TypeScript
27 lines
624 B
TypeScript
import { PaletteOptions, PaletteColorOptions } from '@mui/material/styles/createPalette'
|
|
|
|
declare module '@mui/material/styles/createTheme' {
|
|
type Shadows =
|
|
| 'input'
|
|
| 'card'
|
|
| 'likedCard'
|
|
| 'dislikedCard'
|
|
| 'mutualCard'
|
|
| 'matchButton'
|
|
| 'avatar'
|
|
interface ThemeOptions {
|
|
boxShadows: Record<Shadows, string>
|
|
}
|
|
|
|
interface Theme {
|
|
boxShadows: Record<Shadows, string>
|
|
}
|
|
}
|
|
declare module '@mui/material/styles/createPalette' {
|
|
export interface PaletteOptions {
|
|
link?: PaletteColorOptions
|
|
disabled?: PaletteColorOptions
|
|
disabledBackground?: PaletteColorOptions
|
|
}
|
|
}
|