mirror of
https://github.com/coder/coder.git
synced 2026-09-24 15:04:27 +08:00
26 lines
494 B
TypeScript
26 lines
494 B
TypeScript
import { PaletteColor, PaletteColorOptions, Theme } from "@mui/material/styles"
|
|
|
|
declare module "@mui/styles/defaultTheme" {
|
|
interface DefaultTheme extends Theme {}
|
|
}
|
|
|
|
declare module "@mui/material/styles" {
|
|
interface TypeBackground {
|
|
paperLight: string
|
|
}
|
|
|
|
interface Palette {
|
|
neutral: PaletteColor
|
|
}
|
|
|
|
interface PaletteOptions {
|
|
neutral?: PaletteColorOptions
|
|
}
|
|
}
|
|
|
|
declare module "@mui/material/Button" {
|
|
interface ButtonPropsColorOverrides {
|
|
neutral: true
|
|
}
|
|
}
|