4 reasons to use Chakra UI in your next project
Mateusz Wójcik
Jan 19, 2021・4 min read
Table of Content
What is Chakra UI?
The advantages of Chakra UI
Easily customizable
Dark mode support
Easy RWD
Accessible
Conclusion
What is Chakra UI?
ChakraUI’s homepage states that it's a simple, modular, and accessible component library to let you build React apps with speed. After delivering a few projects where we used Chakra, I can agree with this description. Building UIs never was so fast and convenient.
You may already be familiar with libraries such as MaterialUI, Ant Design, or React Bootstrap. And you may be wondering why you need another UI library when you already have a big, battle-tested group of options to choose from. Well, Chakra stands out mainly because of its great built-ins, accessibility, and high customization.
The advantages of Chakra UI
Easily customizable
One of the most significant advantages of ChakraUI is that you can easily adjust it to your design needs. Usually, you start with your custom theme to specify things like colors, font sizes, breakpoints for responsive design, shadows, and many more! That alone gives you a lot of flexibility when creating advanced UIs, but that's not all.
Each component you use accepts a lot of different props which you can use to style it.
For example, let's take a look at a simple usage of the `<Button>` component in Chakra UI:
```jsx <Button colorScheme="teal" variant="outline" size="lg" isLoading={loading} loadingText="Loading"> Click me </Button>Using this bit of code, Chakra will render a button with styles provided in the theme.
But now, let's use a few props to change its style:
```jsx <Button colorScheme="red" variant="solid" size="md" isLoading={false}> Click me </Button>In this piece of code, we change the button’s color scheme to use a red color palette, and modify its variant to have a solid background. We also resize the button to medium and set isLoading to false.
Let's see. First, we change the button’s color scheme so that it will use a teal color palette. Next, we change its variant, so instead of the whole background, we only have a border. Then we make the entire button bigger. Besides styles, we can change the behavior of the button. When “isLoading” value is true, we hide the icon and display a loader that takes a few props. Both the icon and the loader are part of ChakraUI too!
If you ever used TailwindCSS, which is gaining popularity lately or Styled System, you may see some similarities. Tailwind is a set of CSS classes that you can use to compose components. On the other hand, Styled System and Chakra give you the whole component, but you can change particular styles using props. All of these solutions have a lot of fans and opponents. The latter mentions a big disadvantage: the code may lose readability due to many classes/props. Of course, it may be an issue, so it's essential to keep our components concise.
Dark mode support
The dark mode is becoming an integral part of our tech lives. We can use it on our smartphones, laptops, and of course websites. Although not every project would require you to implement dark mode, it's great that Chakra can simplify the process. By default, most of Chakra's components are dark mode compatible. You just need a little bit of config, and you are good to go! There is also the possibility of using system color mode, so if a user sets dark mode as default for their device, your website will automatically pick it up.
Easy RWD
ChakraUI supports responsive styles out of the box. You don't have to add media queries manually, ChakraUI provides object and array values to add responsive styles. It's worth noting that it uses “@media(min-width)” to ensure a mobile-first approach.
You can define your own breakpoints in theme config, or you can use default ones.
Let's take a look at how the implementation of responsiveness looks in a basic `<Text>` component:
```jsx <Text fontSize={["24px", null, "56px"]} textAlign={["center", null, "left"]}> Responsive Text </Text>Using the above snippet “<Text>” will have “24px” and be centered on all of the breakpoints.
Instead of a single value, we pass an array of values. Chakra will take “24px” from the “fontSize” prop and “center” from “textAlign” and use it for screen sizes between 0 and 30em (these are the default values in the theme config). Then notice “null” passed in: we don't want to change styles in the range from 30em to 48em (again, default breakpoints) so we pass null to avoid generating unnecessary CSS. In the last indexes of the arrays, we assign “56px” and “left” so our text will have this style for every screen size bigger than 48em.
Personally, I'm not a massive fan of this array notation. It makes it harder to find out which styles are applied to each breakpoint.
Fortunately, we can use the object syntax:
```jsx <Text fontSize={{ base: "24px", md: "56px" }} textAlign={{ base: "center", md: "left" }} > Responsive Text </Text>The syntax looks different, but the behavior stays the same.
Accessible
We can not stress enough the importance of accessibility. A considerable percentage of people experiences some kind of disability, so it's crucial to create accessible UIs. We usually have to implement a few WCAG guidelines, but luckily things like proper outlines and keyboard navigation are covered by Chakra. Of course, that's not all, and we still need to remember things like hierarchical heading structure or alts for images.
BONUS: Lately, ChakraUI added support for RTL languages. From now on, it's much easier to create components that should cover both RTL and LTR languages.
Conclusion
As you can see, ChakraUI proves to be modular and accessible. On top of that, it's also really small (375kB minified, 101kB minified, and gzipped, although you should remember that besides the core Chakra library you have to install Emotion). From my experience, it's one of the best component libraries for React!
If you’d like to know more about component libraries, or which one is best for your project, we’ll be happy to hear from you. Write to us at hello@start-up.house
Digital Transformation Strategy for Siemens Finance
Cloud-based platform for Siemens Financial Services in Poland


You may also like...

How we implemented SWR in a project and why we loved it
SWR, a React Hooks library for remote data fetching, provides a simple yet powerful solution for caching, revalidating, and retrieving data in React applications. Learn how SWR eliminates the complexities of managing state slices, speeds up development, and enhances UI performance. Explore examples of SWR implementation and discover its integrations.
Kamil Polok
Jun 09, 2021・6 min read

How to generate PDF from HTML in React / Node.js app
Generating PDFs from HTML can be a challenge, but with the right methods, you can achieve the desired results. Explore different solutions, from using CSS print rules to libraries like html2canvas, jsPDF, and Puppeteer. Understand the pros and cons of each approach to find the best solution for your project. Contact us at hello@start-up.house for more information and assistance. Good luck in your PDF generation endeavors!
Eugene Zolotarenko
May 20, 2021・6 min read
Recently added

Application Development Solutions
Application development solutions cover the entire arc from strategic discovery to continuous scaling, and each phase has its own failure modes. This guide defines what modern solutions include, explains why discovery deserves real investment, and shows where custom engineering beats generic templates. It reviews agile sprint execution, industry-specific requirements and the engagement models that fit different growth stages. Security, compliance and time-to-market trade-offs are treated as engineering concerns rather than afterthoughts.
Alexander Stasiak
Aug 22, 2026・8 min read

Application Development In Cloud Computing
Running an application in the cloud and building it for the cloud are very different engineering decisions. This guide covers cloud-native development properly: the delivery models, the container and orchestration stack, and the CI/CD pipelines that make continuous deployment safe. It walks the lifecycle step by step, addresses the challenges teams hit around cost control and vendor lock-in, and compares long-term economics against on-premise alternatives. Industry examples and forward-looking trends round out the picture.
Alexander Stasiak
Aug 21, 2026・8 min read

Software Engineering Service
Engineering is a discipline of measurable, repeatable practice, and that is what separates a service from simple contract coding. This guide sets out the pillars of high-performance software engineering: strategic discovery, architectural design, rigorous testing and lifecycle maintenance. It compares cooperation models, explains how to choose a technology stack that suits your constraints, and walks a project from ideation to scale. A closing section looks at how AI is reshaping engineering practice itself.
Alexander Stasiak
Aug 20, 2026・7 min read

Software Programming Services
Programming services are only as valuable as the architecture and process wrapped around them. This guide sets out the pillars of high-impact programming, how to choose a technology stack, and the delivery models that have replaced simple hourly billing. It follows the lifecycle of a programming project, covers infrastructure and platform engineering, and reviews vertical-specific expertise. Advanced trends, common outsourcing pitfalls and a method for calculating ROI complete the guide.
Alexander Stasiak
Aug 19, 2026・9 min read

Application Outsourcing
Outsourcing applications is a governance problem as much as a sourcing one. This guide explains the strategic value of application outsourcing, compares the core engagement models, and covers stack selection and industry-specific requirements. It follows the outsourcing lifecycle from discovery through scaling, then examines the economics honestly, including where apparent savings turn into rework. Sections on engineering culture, platform engineering and the effect of AI on outsourcing close the picture.
Alexander Stasiak
Aug 18, 2026・9 min read

Custom Enterprise Application Development Services
Once an organisation outgrows off-the-shelf software, the question becomes how to build resilience rather than features. This guide explains why enterprises commission custom applications, and what modern architectural standards demand around scalability, security and interoperability. It follows the roadmap from discovery to deployment, reviews industry-specific applications, and addresses the integration and change-management challenges that make enterprise projects difficult. Practical answers to common questions close the guide.
Alexander Stasiak
Aug 17, 2026・6 min read
Ready to centralize your know-how with AI?
Start a new chapter in knowledge management—where the AI Assistant becomes the central pillar of your digital support experience.
Work with a team trusted by top-tier companies.





