feat: side nav icons + theme color palette

This commit is contained in:
Leandro Farias 2023-03-29 11:52:55 +00:00
parent 1c74ad372c
commit 7b81761daa
4 changed files with 7 additions and 19 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 102 KiB

View File

@ -2,7 +2,7 @@ import { useTheme } from '@mui/material/styles';
export const Logo = () => { export const Logo = () => {
const theme = useTheme(); const theme = useTheme();
const fillColor = theme.palette.primary.main; const fillColor = '#FFFFFF';
return ( return (
<svg <svg

View File

@ -66,25 +66,13 @@ export const SideNav = (props) => {
p: '12px' p: '12px'
}} }}
> >
<div> <div style={{display:'flex',justifyContent:'center'}}>
<Typography <img src="/assets/oktopus.png" width={'60%'}></img>
color="inherit"
variant="subtitle1"
>
Devias
</Typography>
<Typography
color="neutral.400"
variant="body2"
>
Production
</Typography>
</div> </div>
<SvgIcon <SvgIcon
fontSize="small" fontSize="small"
sx={{ color: 'neutral.500' }} sx={{ color: 'neutral.500' }}
> >
<ChevronUpDownIcon />
</SvgIcon> </SvgIcon>
</Box> </Box>
</Box> </Box>

View File

@ -16,12 +16,12 @@ export const neutral = {
100: '#F3F4F6', 100: '#F3F4F6',
200: '#E5E7EB', 200: '#E5E7EB',
300: '#D2D6DB', 300: '#D2D6DB',
400: '#9DA4AE', 400: '#FFFFFF',
500: '#6C737F', 500: '#6C737F',
600: '#4D5761', 600: '#4D5761',
700: '#2F3746', 700: '#FFFFFF',
800: '#1C2536', 800: '#306d6f',
900: '#111927' 900: '#30596f'
}; };
export const indigo = withAlphas({ export const indigo = withAlphas({