DEV Community

Cover image for Chakra UI: The Best Kept Secret in Web Development
Nitin Sharma
Nitin Sharma

Posted on • Originally published at locofy.ai

Chakra UI: The Best Kept Secret in Web Development

When it comes to building modern, responsive, and user-friendly web applications, choosing the right CSS framework is crucial. Bootstrap, Material-UI, TailwindCSS, and Chakra UI are popular options, but each has unique features and benefits.

Chakra UI, in particular, is a modern UI library for React that provides a clean, accessible, and easy-to-use set of components and design patterns. But what sets Chakra UI apart from other CSS frameworks is its focus on accessibility and its ability to provide a customized and flexible theme system.

With Chakra UI, developers can build accessible, visually appealing, and responsive web applications that meet the needs of a wide range of users. The library’s components are designed to be used together in a harmonious way, ensuring that the overall look and feel of your web application remains consistent and cohesive.

Also, Chakra UI’s theme system allows developers to easily customize their components to match their brand or design style.

Let’s take a deep dive into Chakra UI and explore all of the features it has to offer and how it can serve as a custom design system for your projects.

Installing Chakra UI for Your React Project

Chakra UI is easy to integrate into your React project.

If you have a React project and wish to install Chakra UI, use the following command:

npm i @chakra-ui/react @emotion/react @emotion/styled framer-motion
Enter fullscreen mode Exit fullscreen mode

Then, you have to wrap your App like this.

import * as React from 'react'
import { ChakraProvider } from '@chakra-ui/react'

function App() {
 return (
   <ChakraProvider>
     <App />
   </ChakraProvider>
 )
}
Enter fullscreen mode Exit fullscreen mode

You can also use the below command to install Chakra UI by setting up a new React project.

For JavaScript:

npx create-react-app my-app --template @chakra-ui
Enter fullscreen mode Exit fullscreen mode

For TypeScript:

npx create-react-app my-app --template @chakra-ui/typescript
Enter fullscreen mode Exit fullscreen mode

That’s all.

You can now use Chakra UI within your React project.

Creating a Basic Navbar Design

The header section is typically the first thing that users will see when they visit your website, so it is important to make it visually appealing and easy to navigate.

Here is an example of how to create a basic header section using Chakra UI:

import React from "react";
import { Box, Heading, Flex, Button, Link } from "@chakra-ui/react";

const App = () => {
 const [show, setShow] = React.useState(false);
 const handleToggle = () => setShow(!show);

 return (
   <Flex
     as="nav"
     border="1px"
     align="center"
     justify="space-between"
     wrap="wrap"
     padding="1.5rem"
     bg="#7F5AD5"
     color="white"
   >
     <Flex
       align="center"
       mr={{ md: "5" }}
       width={{ base: "100%", md: "auto" }}
       justifyContent={{ base: "space-between", md: "flex-start" }}
     >
       <Heading as="h1" size="lg" letterSpacing={"-.1rem"}>
         Chakra UI
       </Heading>

       <Box
         display={{ sm: "block", md: "none" }}
         onClick={handleToggle}
       >
         <svg
           fill="white"
           width="12px"
           viewBox="0 0 20 20"
           xmlns="http://www.w3.org/2000/svg"
         >
           <title>Menu</title>
           <path d="M0 3h20v2H0V3zm0 6h20v2H0V9zm0 6h20v2H0v-2z" />
         </svg>
       </Box>
     </Flex>

     <Box
       display={{ base: show ? "block" : "none", md: "flex" }}
       width={{ base: "100%", md: "auto" }}
       alignItems="center"
       justifyContent="center"
       flexGrow={1}
     >
       <Link fontSize='xl' display="block" mr={6}>Home</Link>
       <Link fontSize='xl' display="block" mr={6}>Projects</Link>
       <Link fontSize='xl' display="block">About Us</Link>
     </Box>

     <Box
       display={{ base: show ? "block" : "none", md: "block" }}
       mt={{ base: 4, md: 0 }}
     >
       <Button bg="transparent" border="1px">
         Sign In
       </Button>
     </Box>
   </Flex>
 );
};

export default App;
Enter fullscreen mode Exit fullscreen mode

Here, we have defined a React functional component that represents a navigation bar with a header, a toggle button, a list of links, and a sign-in button.

The navigation bar is styled using the Chakra UI library and its components such as Flex, Box, Heading, Link, and Button.

The component uses React state to manage the visibility of the links and the sign-in button on smaller screens.

When the toggle button is clicked, the “handleToggle” function updates the state of the “show” variable using setShow to show or hide the links and the sign-in button.

The component is structured using the Chakra UI Flex component to arrange the header, the toggle button, the links, and the sign-in button in a row with a defined background color and text color.

On larger screens, the links and sign-in buttons are always visible. On smaller screens, the links and sign-in buttons are hidden by default and can be shown by clicking the toggle button.

You can similarly create a captivating hero section, an informative blog section, a functional form, and, with all these, a complete website by using these Chakra UI components as the building blocks.

Exploring the Chakra Design System

Material UI, as we know, adheres to Google’s Material Design Guidelines, which provide a uniform design language for web applications.

Chakra UI, on the other hand, is dedicated to offering a simple, modular, and user-friendly design framework for developing online applications.

The design system provides a set of rules for developers to follow while building interfaces, ensuring that the components are consistent and accessible to all users.

It consists of several key aspects, including typeface, colors, space, and icons. These components are easily customizable to match your brand and design style, allowing you to easily create a one-of-a-kind look and feel for your application.

According to the documentation, below are some of the design principles.

  1. Customizable Styles: The appearance of components can be altered or enhanced through style props, reducing the reliance on the CSS prop or styled components.

  2. Intuitive API: Keep the component API as straightforward as possible and demonstrate practical uses for the component.

  3. Modular Structure: Divide components into smaller, more manageable pieces with minimal props. This approach will allow for greater flexibility and scalability in terms of both functionality and appearance.

  4. Accessibility Considerations: When developing a component, prioritize accessibility, including keyboard navigation, focus management, and the use of appropriate aria-* attributes. Ensure proper color contrast for enhanced readability and compatibility with voice-over technology.

  5. Dark Mode Support: Components should be designed to accommodate dark mode, utilizing the useColorMode hook to handle styling. Learn more about implementing dark mode.

  6. Clear Prop Naming: Prop names should clearly indicate their purpose. Boolean props should be named using auxiliary verbs, such as “is” or “does.” For example, the Button component uses “isDisabled” or “isLoading.”

Extending the Default Theme

One of the great things about Chakra UI is that it provides a powerful and flexible theme system. You can easily extend the default theme to match your brand and design style.

This allows you to set your brand colors, fonts, and other such base styles as the default, global style. This truly makes the Chakra UI feel as if it was created for your personal use.

Chakra UI’s default theme can easily be extended by passing in a JSON object with keys such as fonts, colors, and line heights, and even defining different variants.

To extend the default theme, you can create a new theme.js file in your project and add the following code:

import { extendTheme } from '@chakra-ui/react';

const theme = {
   fonts: {
       heading: '"Avenir Next", sans-serif',
       body: '"Open Sans", sans-serif',
   },
   colors: {
       brand: {
           bg: '#9747FF',
           text: '#fff',
           card: '#0A99FF',
       },
   },
   sizes: {
       xl: {
           h: '56px',
           fontSize: 'lg',
           px: '32px',
           bg: '#9747FF'
       },
   }
}

export default extendTheme(theme);
Enter fullscreen mode Exit fullscreen mode

In this example, we are extending the default theme by defining new values for the font, colors, and sizes properties.

As you can see from the code snippet above, we can define a custom background, text, and card color as well as the default font families for different text types such as heading and body.

We can now import this custom theme into our application and use it in our components.

import theme from './theme'
import { Box, Heading, Card, CardHeader, CardBody, Text, CardFooter, Button } from "@chakra-ui/react";
import React from 'react'
import { ChakraProvider } from '@chakra-ui/react'

function App() {
 return (
   <ChakraProvider theme={theme}>
     <Box bg="brand.bg" pb={8} align='center'>
       <Heading color="brand.text" fontFamily="heading" py={8}>Welcome</Heading>
       <Card maxW={80} align='center'>
         <CardHeader>
           <Heading size='xl'> Customer dashboard</Heading>
         </CardHeader>
         <CardBody>
           <Text fontFamily="body">View a summary of all your customers over the last month.</Text>
         </CardBody>
         <CardFooter>
           <Button bg="brand.bg" color="brand.text" px={8} py={4} size='xl' variant='with-shadow'>
             Welcome
           </Button>
         </CardFooter>
       </Card>
     </Box>
   </ChakraProvider>
 )
}

export default App
Enter fullscreen mode Exit fullscreen mode

In this example, we are using the ChakraProvider component from Chakra UI to wrap our entire application and pass it into our custom theme. This will ensure that all the components within our application use the custom theme we defined.

Here is the output:

Output

You can see the custom theme we created above in action. Our background & card colors have inherited the values from the custom theme and this makes us easily create more components as well adhering to our personal theme.

How to Quickly Integrate Chakra UI in Your React Project?

Apps requiring a comprehensive design system customizable for your particular needs can make great use of the Chakra UI.

As we know, Chakra UI offers a range of responsive and reusable components, allowing you to build complex UI elements with ease. It also prioritizes accessibility and is built with ARIA attributes and keyboard interactions in mind, making it an ideal choice for projects that need to be accessible to all users.

However, one of the biggest challenges developers face during the developer handoff process is replicating the designs in code and it can be even harder to do so with any UI library because often the library limits the customization possibilities that the designer may have in mind.

This is where Locofy.ai comes in. It will allow designers to not hand over static design files but rather live, responsive code that is highly extensible as well.

Locofy.ai is essentially a Figma and Adobe XD plugin that can not only convert your designs to pixel-perfect React code but also enable you to tag your design components with Chakra UI elements.

This ensures that when you export the code, it is using the right Chakra UI components under the hood. You can also create a custom Chakra UI theme directly from your design files.

Chakra Global Theme

Moreover, the plugin also uses AI to assist you in breaking down your code into components with value props for easier code extension.

In other words, you can go from Figma to production-ready React code with Chakra UI integrated out-of-the-box in record time and ship products 5–10x faster.

Hope you like it.

That’s it — thanks.

Top comments (1)

Collapse
 
moopet profile image
Ben Sinclair

I tried using Chakra when I was teaching myself react but it was (as in a couple of years back, no idea now) really painful to try to make anything that didn't fit into Chakra's way of doing things. Any changes you wanted to make that weren't already considered meant essentially forking half their components.