diff --git a/src/page/LoginPage.jsx b/src/page/LoginPage.jsx index d598f34..4bff911 100644 --- a/src/page/LoginPage.jsx +++ b/src/page/LoginPage.jsx @@ -1,59 +1,105 @@ -import React from 'react' +import React from 'react'; import TextField from '@mui/material/TextField'; import Checkbox from '@mui/material/Checkbox'; import Button from '@mui/material/Button'; import FormControlLabel from '@mui/material/FormControlLabel'; import Link from '@mui/material/Link'; -import { Grid, Typography, Box, Container } from '@mui/material'; - -function LoginPage () { +import { Grid, Typography, Box, Container, createTheme, ThemeProvider } from '@mui/material'; +function LoginPage() { + const theme = createTheme({ + palette: { + primary: { + main: '#550064', + }, + secondary: { + main: '#7966ce', + }, + }, + }); return ( -