Edited colors of Networking statics

This commit is contained in:
Angelillo15 2023-08-05 13:37:01 +02:00
parent f92af06eda
commit bab2b21098
1 changed files with 4 additions and 4 deletions

View File

@ -35,8 +35,8 @@ export default () => {
return { return {
...opts, ...opts,
label: !index ? 'Network In' : 'Network Out', label: !index ? 'Network In' : 'Network Out',
borderColor: !index ? theme('colors.cyan.400') : theme('colors.yellow.400'), borderColor: !index ? theme('colors.orange.400') : theme('colors.red.400'),
backgroundColor: hexToRgba(!index ? theme('colors.cyan.700') : theme('colors.yellow.700'), 0.5), backgroundColor: hexToRgba(!index ? theme('colors.orange.700') : theme('colors.red.700'), 0.5),
}; };
}, },
}); });
@ -79,10 +79,10 @@ export default () => {
legend={ legend={
<> <>
<Tooltip arrow content={'Inbound'}> <Tooltip arrow content={'Inbound'}>
<CloudDownloadIcon className={'mr-2 w-4 h-4 text-yellow-400'} /> <CloudDownloadIcon className={'mr-2 w-4 h-4 text-orange-400'} />
</Tooltip> </Tooltip>
<Tooltip arrow content={'Outbound'}> <Tooltip arrow content={'Outbound'}>
<CloudUploadIcon className={'w-4 h-4 text-cyan-400'} /> <CloudUploadIcon className={'w-4 h-4 text-red-400'} />
</Tooltip> </Tooltip>
</> </>
} }