styled-components alternatives and similar libraries
Based on the "CSS / Style" category.
Alternatively, view styled-components alternatives based on common mentions on social networks and blogs.
-
classnames
A simple javascript utility for conditionally joining classNames together -
stitches
[Not Actively Maintained] CSS-in-JS with near-zero runtime, SSR, multi-variant support, and a best-in-class developer experience. -
react-responsive
CSS media queries in react - for responsive design, and more. -
aphrodite
Framework-agnostic CSS-in-JS with support for server-side rendering, browser prefixing, and minimum CSS generation -
react-css-modules
Seamless mapping of class names to CSS modules inside of React components. -
Ultra Fast, Zero Runtime, Headless UI Components
๐ปโโ๏ธ A Headless, Utility-First, and Zero-Runtime UI Component Library โจ -
react-container-query
:package: Modular responsive component -
postcss-js
PostCSS for React Inline Styles, Free Style and other CSS-in-JS -
react-css-components
Define React presentational components with CSS -
react-look
Advanced & Dynamic Component Styling for React and React Native. Ships with powerful Plugins, Mixins and Developer Tools. -
inline-style-prefixer
Autoprefixer for JavaScript style objects -
stilr
Encapsulated styling for your javascript components with all the power of javascript and CSS combined. -
react-inline-css
๐ณ Write CSS inside your React components! -
aesthetic
๐จ Aesthetic is an end-to-end multi-platform styling framework that offers a strict design system, robust atomic CSS-in-JS engine, a structural style sheet specification (SSS), a low-runtime solution, and much more! -
paperclip
Write durable HTML & CSS for any kind of web application [Moved to: https://github.com/paperclip-ui/paperclip] -
reactponsive
Responsive components and Hooks โ for your favorite framework โ๏ธ
A Non-Cloud Alternative to Google Forms that has it all.
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of styled-components or a related project?
README
Visual primitives for the component age. Use the best bits of ES6 and CSS to style your apps without stress ๐
Looking for v5?
The main
branch is under development of the upcoming v6 major version of styled-components. For changes targeting v5, please point your PRs at the legacy-v5
branch.
Utilizing tagged template literals (a recent addition to JavaScript) and the power of CSS, styled-components
allow you to write actual CSS code to style your components. It also removes the mapping between components and styles โ using components as a low-level styling construct could not be easier!
const Button = styled.button`
color: grey;
`;
Alternatively, you may use style objects. This allows for easy porting of CSS from inline styles, while still supporting the more advanced styled-components capabilities like component selectors and media queries.
const Button = styled.button({
color: 'grey',
});
Equivalent to:
const Button = styled.button`
color: grey;
`;
styled-components
is compatible with both React (for web) and React Native โ meaning it's the perfect choice even for truly universal apps! See the documentation about React Native for more information.
Supported by Front End Center. Thank you for making this possible!
Upgrading from v4
npm install styled-components@^5.0.0 react@^16.8 react-dom@^16.8 react-is@^16.8
- ??
- Profit!
If you use jest-styled-components, make sure you update that too.
Docs
See the documentation at styled-components.com/docs for more information about using styled-components
!
Quicklinks to some of the most-visited pages:
Example
<!-- prettier-ignore -->
import React from 'react';
import styled from 'styled-components';
// Create a <Title> react component that renders an <h1> which is
// centered, palevioletred and sized at 1.5em
const Title = styled.h1`
font-size: 1.5em;
text-align: center;
color: palevioletred;
`;
// Create a <Wrapper> react component that renders a <section> with
// some padding and a papayawhip background
const Wrapper = styled.section`
padding: 4em;
background: papayawhip;
`;
// Use them like any other React component โ except they're styled!
<Wrapper>
<Title>Hello World, this is my first styled component!</Title>
</Wrapper>
This is what you'll see in your browser:
Babel Macro
If you're using tooling that has babel-plugin-macros set up, you can switch to the styled-components/macro
import path instead to gain the effects of the babel plugin without further setup.
import styled from 'styled-components/macro';
// A static className will be generated for Title (important for SSR)
const Title = styled.h1`
font-size: 1.5em;
text-align: center;
color: palevioletred;
`;
If you wish to provide configuration options to the babel plugin similar to how you would in a .babelrc
, see this guide. The config name is "styledComponents"
.
Built with styled-components
A lot of hard work goes into community libraries, projects, and guides. A lot of them make it easier to get started or help you with your next project! There are also a whole lot of interesting apps and sites that people have built using styled-components.
Make sure to head over to awesome-styled-components to see them all! And please contribute and add your own work to the list so others can find it.
Contributing
If you want to contribute to styled-components
please see our [contributing and community guidelines](./CONTRIBUTING.md), they'll help you get set up locally and explain the whole process.
Please also note that all repositories under the styled-components
organization follow our [Code of Conduct](./CODE_OF_CONDUCT.md), make sure to review and follow it.
Badge
Let everyone know you're using styled-components โ
[](https://github.com/styled-components/styled-components)
Contributors
This project exists thanks to all the people who contribute. [[Contribute](CONTRIBUTING.md)].
Backers
Thank you to all our backers! ๐ [Become a backer]
Sponsors
Support this project by becoming a sponsor. Your logo will show up here with a link to your website. [Become a sponsor]
License
Licensed under the MIT License, Copyright ยฉ 2016-present Glen Maddern and Maximilian Stoiber.
See [LICENSE](./LICENSE) for more information.
Acknowledgements
This project builds on a long line of earlier work by clever folks all around the world. We'd like to thank Charlie Somerville, Nik Graf, Sunil Pai, Michael Chan, Andrey Popp, Jed Watson & Andrey Sitnik who contributed ideas, code or inspiration.
Special thanks to @okonet for the fantastic logo.
*Note that all licence references and agreements mentioned in the styled-components README section above
are relevant to that project's source code only.