Edited colors of Networking statics
This commit is contained in:
parent
f92af06eda
commit
bab2b21098
|
@ -35,8 +35,8 @@ export default () => {
|
|||
return {
|
||||
...opts,
|
||||
label: !index ? 'Network In' : 'Network Out',
|
||||
borderColor: !index ? theme('colors.cyan.400') : theme('colors.yellow.400'),
|
||||
backgroundColor: hexToRgba(!index ? theme('colors.cyan.700') : theme('colors.yellow.700'), 0.5),
|
||||
borderColor: !index ? theme('colors.orange.400') : theme('colors.red.400'),
|
||||
backgroundColor: hexToRgba(!index ? theme('colors.orange.700') : theme('colors.red.700'), 0.5),
|
||||
};
|
||||
},
|
||||
});
|
||||
|
@ -79,10 +79,10 @@ export default () => {
|
|||
legend={
|
||||
<>
|
||||
<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 arrow content={'Outbound'}>
|
||||
<CloudUploadIcon className={'w-4 h-4 text-cyan-400'} />
|
||||
<CloudUploadIcon className={'w-4 h-4 text-red-400'} />
|
||||
</Tooltip>
|
||||
</>
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue