How to change the color of the bell?
I wish to change the color of the bell icon of the notification center
NovuProvider component


header.cog and time text with notifications.listItem.timestamppackages/notification-center/src/store/styles/styles-provider.types.ts
NotificationCenter component that allows to hide it: showUserPreferences
styles={{
bellButton: {
root: {
svg: {
color: 'red',
},
},
},
}}NovuProviderstyles={{
bellButton: {
root: {
svg: {
width: '40px',
height: '40px',
},
},
dot: {
rect: {
fill: 'green',
strokeWidth: '2px'
}
}
},
}}top: calc(-3% - 10px);
right: calc(10% - 10px);header.cognotifications.listItem.timestamppackages/notification-center/src/store/styles/styles-provider.types.tsNotificationCentershowUserPreferences<NotificationCenter
...
showUserPreferences={false}
/>styles = {
bellButton: {
root: {
svg: {
color: 'white',
width: '40px',
height: '40px',
}
},
dot: {
rect: {
fill: '#1976d2',
strokeWidth: '1px',
}
},
}
};styles = {
bellButton: {
root: {
svg: {
color: 'white',
width: '45px',
height: '40px',
fill: 'white'
}
},
dot: {
rect: {
fill: 'rgb(221, 0, 49)',
strokeWidth: '0.2',
stroke: 'white',
width: '3.5px',
height: '3.5px',
},
left: '40%',
},
},
header: {
root: {
backgroundColor: '#1976d2',
'&:hover': { backgroundColor: 'rgb(221, 0, 49)' },
'.some_class': { color: 'red' },
}
},
layout: {
root: {
backgroundColor: '#1976d2',
}
},
popover: {
arrow: {
backgroundColor: '#1976d2',
border: '#1976d2',
}
},
};