✨ frontend add
This commit is contained in:
30
frontend/admin/src/styles/darkTheme.ts
Normal file
30
frontend/admin/src/styles/darkTheme.ts
Normal file
@@ -0,0 +1,30 @@
|
||||
import { createTheme, colors } from '@material-ui/core'
|
||||
import typography from './typography'
|
||||
import shadows from './shadows'
|
||||
|
||||
/**
|
||||
* @TODO
|
||||
* custom theme에 필요한 것들 지정
|
||||
*/
|
||||
|
||||
// Create a theme instance.
|
||||
const darkTheme = createTheme({
|
||||
palette: {
|
||||
background: {
|
||||
default: '#192038',
|
||||
paper: colors.common.black,
|
||||
},
|
||||
primary: {
|
||||
contrastText: '#192038',
|
||||
main: '#5664d2',
|
||||
},
|
||||
text: {
|
||||
primary: '#f2f6ff',
|
||||
secondary: '#6b778c',
|
||||
},
|
||||
},
|
||||
shadows,
|
||||
typography,
|
||||
})
|
||||
|
||||
export default darkTheme
|
||||
Reference in New Issue
Block a user