Create Stunning Text with Material UI Typography

December 24, 2022
Amazing Agu
React.js

The Fastest Way to Build React UI

Convert Figma designs to production-ready React.js code. Build stunning apps and landing pages faster than your peers and competitors.

Introduction

Text has always been a crucial part of the web experience. Text that is legible and understandable makes for a more pleasurable experience.

Material UI is a React JS Component Library. In this article, we will explore typography in Material UI and how to create stunning text with it.

Before we dive in, we could build React components and copy the code directly from Figma. This is possible with the CopyCat plugin. CopyCat also supports component libraries. Examples are Material UI, Chakra UI, etc. This saves development time massively. Check out the CopyCat Plugin.

What is Typography in UI design?

Typography can be defined as the art of arranging text and letters in a clear and concise manner. This makes the text easily readable and makes no room for confusion.

User Interface Designers pay close attention to how they arrange text. This is because the user should easily understand whatever information they are trying to pass across.

How to use Typography in React Material UI

While building Web Applications with React JS and Material UI, we need good typography to make our design stand out. Material UI makes it very easy to achieve this.

Getting started with Typography in Material UI

In this section of the article, we are going to install Material UI and a font family for our Web App. Before we keep going, this article assumes that the reader has an already running React JS App.

Installing Material UI

To install Material UI, run the following command in the terminal.

npm install @mui/material @emotion/react @emotion/styled

This command installs Material UI and Emotion which is the default styling engine for Material UI. For more information on what the command does, check out the documentation website.

Installing a Font family

Material UI uses Roboto as its default font. The font however does not come preinstalled so we need to install it separately.

For this article, we will install it using Fontsource.

npm install @fontsource/roboto

After this, we bring in the default Roboto font weights Material UI uses. The imports should go into our entry point JavaScript file.

This article assumes a Vite + React setup, therefore the entry point is main.jsx.

import React from 'react'
import ReactDOM from 'react-dom/client'
import App from './App'
import '@fontsource/roboto/300.css';
import '@fontsource/roboto/400.css';
import '@fontsource/roboto/500.css';
import '@fontsource/roboto/700.css';

ReactDOM.createRoot(document.getElementById('root')).render(
  <React.StrictMode>
    <App />
  </React.StrictMode>
)

Using the Typography component

The best way to display text in Material UI is using the Typography Component. This component handles font weights and sizes for any HTML element we specify.

We use the Typography component this way:

import { Typography, Box } from '@mui/material'

function TextDemo() {
    return (
        <Box sx={{ width: '100%', maxWidth: 500, margin: 'auto' }}>
            <Typography variant="h1">Main Title</Typography>
            <Typography variant="h2">Introduction</Typography>
            <Typography variant="body1">
                Lorem ipsum dolor sit amet consectetur adipisicing elit. Distinctio amet pariatur cupiditate ullam, cumque magni dolorum, deleniti aperiam temporibus quas corrupti, consectetur eligendi.
            </Typography>
        </Box>
    )
}

export default TextDemo

https://images.surferseo.art/61ac021d-adeb-4cd7-ae7a-eaeba9d237b2.png

From the source code above, we imported the Typography and Box components from Material UI. We used the Box Component as a container for our text in this case. More about the Box component can be found here.

We can also see that we use the prop called “variant” to indicate the style of text we want for our typography component.

Typography Component Props

We have already seen “variant” as a typography component prop, however, there are many more props we can use to further enhance our text. They include align, component, gutterBottom, noWrap, paragraph, and variant prop. Below is a rundown of what they do:

https://images.surferseo.art/e227e932-e187-4578-9a10-66d8343b9d23.png

How to add Colors in Material UI Typography

To add colors, we use the sx prop which accepts an object as its value. Then we put in the theme name of the color.

<Typography variant="h1" sx={{ color: 'primary.main' }}>Main Title</Typography>

https://images.surferseo.art/57d0751d-27eb-4c8c-8ea2-9d4c078e402d.png

What CSS is applied for Typography components?

For further customization of Elements, one can use the sx prop. We can use this to customize the font weight, font size, font style, letter spacing, line height and so much more. More information can be found here.

Conclusion

In this article, we have looked at the importance of Typography and how we can easily implement it in Material UI. We have also learned about props for the enhancement of our text and how to apply further customizations.

Start converting your Material UI Figma designs to Code using the CopyCat Plugin. Save 35% of your development time and create projects with lightning speed. Check it out.

Resources

These are additional resources on the topic

Some interesting reads from our Blogs

Related Articles

  • React.js

    How to use React useCallback Hook and Stop Unnecessary Re-renders

    What are React Hooks? They let us "hook into" React class component features like state, reducer, and component lifecycle methods and use them within a functional component. React hooks are built-in Javascript objects or functions that allow developers to utilize…

    August 23, 2022
  • React.js

    All You Need to Know About React Props

    What are React Props? Props represent a component's " properties, " and it’s similar to the concept of parameters and arguments in JavaScript functions. Props enable us to share dynamic data from one component to another. How Props works in…

    October 31, 2022

Convert Figma To React

Convert Figma designs to production-ready React.js code. Build stunning apps and landing pages faster than your peers and competitors.

Convert Design to Code