Material UI Change App Bar Title Color


Material UI Change App Bar Title Color– Sometimes we need custom color in App bar Title, we can change this color easily.


Material UI Change App Bar Title Color Example

We can change App Bar Title Color Simply as below-

Material UI Change App Bar Title Color Example:

const titleStyles = {
  title: {
    cursor: 'pointer'

  },
  color:{
    color: Colors.redA200
  }
};
 <AppBar title={<span style={titleStyles.title}>Title</span>} titleStyle={titleStyles.color}>
</AppBar>

On the same way you change other styles also.


Advertisements

Add Comment

📖 Read More