default theme
default theme์์ palette๋ฅผ ๋ณด์๋ฉด ์๋์ ๊ฐ์ต๋๋ค.
Default theme - Material UI
Here's what the theme object looks like with the default values.
mui.com
Palette ์ปค์คํ
Palette - Material UI
The palette enables you to modify the color of the components to suit your brand.
mui.com
์ ๋ ์๋์ ๊ฐ์ด myBlue ๋ฅผ ์๋ก ์ ์ํด์ ์ถ๊ฐํ์ต๋๋ค.
import {
createTheme,
ThemeProvider,
responsiveFontSizes,
} from "@mui/material/styles";
import CssBaseline from "@mui/material/CssBaseline";
/**
* ํ
๋ง ์ ์
* - ๊ณ ์ ์, ๊ธ๊ผด ๋ฑ
*/
let theme = createTheme({
palette: {
myBlue: {
100: "#ECF2FF",
200: "#E6EBF4",
},
},
});
โจ ์๋ ๊ธ์ ์ฐธ๊ณ ํ์ฌ ์ปค์คํ ํ theme๋ฅผ ์ ์ฉ์ํต๋๋ค.
[Material Design] Material-UI(MUI)๋ก react & styled component ์ฌ์ฉํ๊ธฐ <๊ธฐ๋ณธ theme๋ฅผ ์ปค์คํฐ๋ง์ด์งํ๊ธฐ>
https://mui.com/material-ui/customization/theming/ Theming - Material UI Customize MUI with your theme. You can change the colors, the typography and much more. mui.com theme๋ฅผ ์ ์ํ๋ฉด, ์ปดํฌ๋ํธ๋ฅผ ๋ง๋ค ๋๋ง๋ค ์ผ์ผ์ด ์์ด๋ ํฐํธ ๋ฑ
avoc-o-d.tistory.com
๊ทธ๋ผ ์๋์ ๊ฐ์ด ์ ๊ทผ ๊ฐ๋ฅํฉ๋๋ค!!
<Button variant="contained" sx={{ backgroundColor: "myBlue.200" }}>
์์
</Button>
๐๐