"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.themeOptions = void 0; const colors_1 = require("@mui/material/colors"); exports.themeOptions = { palette: { mode: "light", primary: colors_1.brown, }, typography: { button: { textTransform: "none", }, }, components: { MuiButton: { defaultProps: { disableRipple: true, }, }, MuiTabs: { defaultProps: { TabIndicatorProps: { style: { height: "3px", color: "#151515", backgroundColor: "#1fa7f8", }, }, textColor: "inherit", }, styleOverrides: { root: { borderBottom: "1px solid #d2d2d2", }, }, }, MuiTab: { defaultProps: { disableRipple: true, }, styleOverrides: { root: { minWidth: "auto", padding: "16px 8px", }, disabled: { backgroundColor: "gray", }, }, }, MuiButtonBase: { styleOverrides: { root: { "&:hover": { boxShadow: "0 -3px #b8bbbe inset", }, }, }, }, }, };