mirror of
https://github.com/sasjs/server.git
synced 2026-01-07 14:40:05 +00:00
chore: rename Web folder to web
This commit is contained in:
55
web/src/theme/palette.js
Normal file
55
web/src/theme/palette.js
Normal file
@@ -0,0 +1,55 @@
|
||||
import { colors } from '@mui/material'
|
||||
|
||||
const white = '#FFFFFF'
|
||||
const black = '#000000'
|
||||
const yellow = '#F6E30F'
|
||||
|
||||
const palette = {
|
||||
black,
|
||||
white,
|
||||
primary: {
|
||||
contrastText: white,
|
||||
main: black
|
||||
},
|
||||
secondary: {
|
||||
contrastText: white,
|
||||
main: yellow
|
||||
},
|
||||
success: {
|
||||
contrastText: white,
|
||||
dark: colors.green[900],
|
||||
main: colors.green[600],
|
||||
light: colors.green[400]
|
||||
},
|
||||
info: {
|
||||
contrastText: white,
|
||||
dark: colors.blue[900],
|
||||
main: colors.blue[600],
|
||||
light: colors.blue[400]
|
||||
},
|
||||
warning: {
|
||||
contrastText: white,
|
||||
dark: colors.orange[900],
|
||||
main: colors.orange[600],
|
||||
light: colors.orange[400]
|
||||
},
|
||||
error: {
|
||||
contrastText: white,
|
||||
dark: colors.red[900],
|
||||
main: colors.red[600],
|
||||
light: colors.red[400]
|
||||
},
|
||||
text: {
|
||||
primary: colors.blueGrey[900],
|
||||
secondary: colors.blueGrey[600],
|
||||
link: colors.blue[600]
|
||||
},
|
||||
background: {
|
||||
default: '#F4F6F8',
|
||||
paper: white
|
||||
},
|
||||
icon: colors.blueGrey[600],
|
||||
divider: colors.grey[200]
|
||||
}
|
||||
|
||||
export default palette
|
||||
Reference in New Issue
Block a user