๐Ÿ’ป My Work/๐ŸŽจ Material Design

[Material Design] Material-UI(MUI) <palette colors ์ปค์Šคํ…€ํ•ด์„œ ์ƒ‰ ์ถ”๊ฐ€ํ•˜๊ธฐ>

Jaeseo Kim 2023. 1. 16. 21:59

default theme

default theme์—์„œ palette๋ฅผ ๋ณด์ž๋ฉด ์•„๋ž˜์™€ ๊ฐ™์Šต๋‹ˆ๋‹ค.

 

Default theme - Material UI

Here's what the theme object looks like with the default values.

mui.com

default theme palette

 

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>

primary(๊ธฐ๋ณธ๊ฐ’)
์ƒˆ๋กœ ์ •์˜ํ•œ myBlue

 

 

๐Ÿš€๐Ÿš€