Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/andreipfeiffer/css-in-js

A thorough analysis of all the current CSS-in-JS solutions with SSR & TypeScript support for Next.js
https://github.com/andreipfeiffer/css-in-js

comparison css-in-js nextjs reactjs styling typescript

Last synced: about 2 months ago
JSON representation

A thorough analysis of all the current CSS-in-JS solutions with SSR & TypeScript support for Next.js

Awesome Lists containing this project

README

        

# A thorough analysis of CSS-in-TS

This document contains an in-depth analysis of all the current **CSS-in-JS** solutions, that support **Server Side Rendering** and **TypeScript**.

The baseline reference we'll use for comparison is a **CSS Modules** approach.
We're using **Next.js** as a SSR framework for building resources.
Last important aspect is type-safety with full **TypeScript** support.


> ๐Ÿ—“ _Last update: **Aug 2021**_

> ๐Ÿ—ž To get a shorter overview, you can checkout the **article on CSS Tricks**:
> https://css-tricks.com/a-thorough-analysis-of-css-in-js/

> ๐Ÿ“ฝ If you prefer a video instead, you can checkout my **talk from ngPartyCZ**:
> https://www.youtube.com/watch?v=c7uWGhrAx9A

> โœ‹ Please checkout our [goals](#goals) & [disclaimer](#disclaimer) before jumping to conclusions.


## Table of contents

- [Motivation](#motivation)
- [Goals](#goals)
- [Disclaimer](#disclaimer)
- [**Overview**](#overview)
- [Legend](#legend)
- [Overall observations](#overall-observations)
- Libraries review
- [**CSS Modules**](#css-modules)
- [**Styled JSX**](#styled-jsx)
- [**Styled Components**](#styled-components)
- [**Emotion**](#emotion)
- [**TypeStyle**](#typestyle)
- [**Fela**](#fela)
- [**Stitches**](#stitches)
- [**JSS**](#jss)
- [**Goober**](#goober)
- [**Compiled**](#compiled)
- [**Linaria**](#linaria)
- [**vanilla-extract**](#vanilla-extract)
- [Libraries not included](#libraries-not-included)
- [Running the examples](#running-the-examples)
- [Feedback and Suggestions](#feedback-and-suggestions)


## Motivation

The **CSS language** and **CSS Modules** have some limitations, especially if we want to have type-safe code. Some of these limitations have alterative solutions, others are just being _annoying_ or _less than ideal_:

1. **Styles cannot be co-located with components**
This can be frustrating when authoring many small components, but it's not a deal breaker. However, the experience of moving back-and-forth between the `component.js` file and the `component.css` file, searching for a given class name, and not being able to easily _"go to style definition"_, is an important productivity drawback.

2. **Styling pseudos and media queries requires selector duplication**
Another frustrating fact is the need to duplicate our CSS classes when defining __pseudo classes and elements__, or __media queries__. We can overcome these limitations using a CSS preprocessor like __SASS, LESS or Stylus__, that supports the `&` parent selector, enabling __contextual styling__.

```css
.button {}

/* duplicated selector declaration for pseudo classes/elements */
.button:hover {}
.button::after {}

@media (min-width: 640px) {
/* duplicated selector declaration inside media queries */
.button {}
}
```

3. **Styles usage is disconnected from their definition**
We get no IntelliSense with CSS Modules, of what CSS classes are defined in the `component.css` file, making **copy-paste** a required tool, lowering the DX. It also makes __refactoring very cumbersome__, because of the lack of safety.

4. **Using type-safe design tokens in CSS is non-trivial**
Any [design tokens](https://spectrum.adobe.com/page/design-tokens/) defined in JS/TS (to benefit from type-safety) cannot be directly used in CSS.

There are at least 2 workarounds for this issue, neither of them being elegant:
- We could inject them as [CSS Custom Properties / Variables](https://developer.mozilla.org/en-US/docs/Web/CSS/Using_CSS_custom_properties), but we still don't get any IntelliSense or type-safety when using them in `.module.css`.
- We could use **inline styles**, which is less performant, and it also introduces a different way to write styles (camelCase vs. kebab-case), while also splitting the styling in 2 different places: the component file and the `.css` file.
- We could use CSS (or SASS) as the source of truth for design tokens, by storing them as CSS Custom Properties and read them from JS using DOM queries, but we'd still need to manually update both the CSS and JS code when we perform any change, because we don't have type-safety when dealing with CSS;


## Goals

There are specific goals we're looking for with this analysis:

- ๐Ÿฅ‡ SSR support and easy integration with Next.js
- ๐Ÿฅ‡ full TypeScript support
- ๐Ÿฅ‡ great DX with code completion & syntax highlight
- ๐Ÿฅˆ light-weight
- ๐Ÿฅˆ comprehensive documentation
- ๐Ÿฅ‰ intuitive API and low learning curve


Getting even more specific, we wanted to experience the usage of various CSS-in-JS solutions regarding:

- defining __global styles__
- using __media queries__ & __pseudo classes__
- __dynamic styles__ based on component `props` (aka. component variants), or from user input
- __bundle size__ impact


## Disclaimer

This analysis is intended to be **objective** and **unopinionated**:
- I have not built my own CSS-in-JS library.
- I don't work on any of the libraries reviewed here.
- I have **no intention or motivation for _promoting_ or _trashing_** either of them.
- I have **no prior experience** with any CSS-in-JS solution, so I'm **not biased** towards any of them.
- I have **equally used** all the solutions analyzed here, which also means I have **no extensive experience** with any of them. So, you can safely say _I'm a jack of all ~~trades~~ CSS-in-JS libraries, but master of none_.


๐Ÿ‘Ž **What you WON'T FIND here?**
- which solution is _"the best"_, as I'll not add any grading, which would also be highly subjective;
- which solution is _"the fastest"_, as I'm not concearned about rendering performance metrics (you can checkout [Necholas's benchmarks](https://necolas.github.io/react-native-web/benchmarks/) for this);


๐Ÿ‘ **What you WILL FIND here?**
- an overview of (almost) all CSS-in-JS solutions available at this date (see _last update_ on top) that we've tried to integrate into a **Next.js v11 + TypeScript** empty project, with __minimal effort__;
- a limited set of **quantitative metrics** that allowed us to evaluate these solutions, which might help you as well;
- an additional list of **qualitative personal observations**, which might be either minor details or deal-breakers when choosing a particular solution.

The libraries are not presented in any particular order. If you're interested in a brief __history of CSS-in-JS__, you should checkout the [Past, Present, and Future of CSS-in-JS](https://www.youtube.com/watch?v=75kmPj_iUOA) insightful talk by Max Stoiber.

---




## Overview

| | [1.ย Coโ€‘location](#1-co-location) | [2.ย DX](#2-dx) | [3.ย `` tag`ย ` ``](#3-tag-tagged-templates) | [4.ย `{ย }`](#4--object-styles) | [5.ย TS](#5-ts) | [6.ย `&`ย ctx](#6--ctx-contextual-styles) | [7.ย Nesting](#7-nesting) | [8.ย Theme](#8-theming) | [9.ย `.css`](#9-css-static-css-extraction) | [10.ย ``](#10-style-tag) | [11.ย Atomic](#11-atomic-css) | [12.ย `className`](#12-classname) | [13.ย `<Styledย />`](#13-styled-) | [14.ย `css`ย prop](#14-css-prop) | [15.ย Agnostic](#15-framework-agnostic) | [16.ย Pageย sizeย delta](#16-page-size-delta) |
| :--- | :------------------: | :---: | :-------------: | :------: | :---: | :--------: | :--------: | :------: | :-------: | :-----------: | :--------: | :-------------: | :----------: | :------------: | :-------: | ---: |
| [CSSย Modules](#css-modules) | โŒ | โœ… | โœ… | โŒ | โŒ | โŒ | โœ… | โŒ | โœ… | โŒ | โŒ | โœ… | โŒ | โŒ | โœ… | - |
| [Styledย JSX](#styled-jsx) | โœ… | ๐ŸŸ  | โœ… | โŒ | ๐ŸŸ  | โŒ | โœ… | โŒ | โŒ | โœ… | โŒ | โœ… | โŒ | โŒ | โŒ | `+2.8ย kBย /ย +12.0ย kB` |
| [Styledย Components](#styled-components) | โœ… | ๐ŸŸ  | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โŒ | โœ… | โŒ | โŒ | โœ… | โœ… | โŒ | `+13.4ย kBย /ย +39.0ย kB` |
| [Emotion](#emotion) | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โŒ | โœ… | โŒ | โœ… | โœ… | โœ… | โœ… | `+6.5ย kB / +20.0 kB` |
| [TypeStyle](#typestyle) | โœ… | โœ… | โŒ | โœ… | โœ… | โœ… | โœ… | ๐ŸŸ  | โŒ | โœ… | โŒ | โœ… | โŒ | โŒ | โœ… | `+2.1ย kB /ย ย +8.0 kB` |
| [Fela](#fela) | โœ… | ๐ŸŸ  | ๐ŸŸ  | โœ… | ๐ŸŸ  | โœ… | โœ… | โœ… | โŒ | โœ… | โœ… | โœ… | โŒ | โŒ | โœ… | `+11.9ย kB / +43.0ย kB` |
| [Stitches](#stitches) | โœ… | โœ… | โŒ | โœ… | โœ… | โœ… | โœ… | โœ… | โŒ | โœ… | โŒ | โœ… | โœ… | ๐ŸŸ  | โœ… | `+5.3ย kB / +17.0ย kB` |
| [JSS](#jss) | โœ… | โœ… | ๐ŸŸ  | โœ… | โœ… | โœ… | โœ… | โœ… | โŒ | โœ… | โŒ | โœ… | ๐ŸŸ  | โŒ | โœ… | `+18.2ย kB / +60.0ย kB` |
| [Goober](#goober) | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โŒ | โœ… | โŒ | โœ… | โœ… | ๐ŸŸ  | โœ… | `+1.1ย kB / ย +4.0ย kB` |
| [Compiled](#compiled) | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โŒ | โŒ | โœ… | โœ… | ๐ŸŸ  | โœ… | โœ… | โŒ | `+3.5ย kB / ย +9.0ย kB` |
| [Linaria](#linaria) | โœ… | โœ… | โœ… | โŒ | โœ… | โœ… | โœ… | โœ… | โœ… | โŒ | โŒ | โœ… | โœ… | โŒ | โœ… | `+2.7ย kB / ย +6.0ย kB` |
| [vanilla-extract](#vanilla-extract) | โŒ | โœ… | โŒ | โœ… | โœ… | โœ… | โŒ | โœ… | โœ… | โŒ | ๐ŸŸ  | โœ… | โŒ | โŒ | โœ… | `+0.0ย kB /ย ย -2.0 kB` |

<br />

### LEGEND:

- โœ… - full & out-of-the-box support
- ๐ŸŸ  - partial or limited support, less than ideal, or requiring some additional manual work for full support
- โŒ - lack of support

<br />

#### 1. Co-location

The ability to define styles within the same file as the component. Note that we can also extract the styles into a separate file and import them, in case we prefer it.

[โฌ†๏ธ to overview](#overview)

<br />

#### 2. DX

Refers to the **Developer eXperience** which includes 2 main aspects:

- **syntax highlighting** for styles definition;
- **code-completion/suggestions** for supported CSS Properties and available values (we're evaluating only the suggestion feature, not type-safety);

[โฌ†๏ธ to overview](#overview)

<br />

#### 3. `` tag`ย ` `` (Tagged Templates)

Support for defining __styles as strings__, using ES Tagged Templates:

- uses `kebab-case` for property names, just like plain CSS syntax;
- enables easier migration from plain CSS to CSS-in-JS, because we don't have to completely re-write the styles;
- requires installing additional code editor plugin(s) for [syntax highlight and code completion](#2-dx), otherwise our code would look like a plain `string`;
- requires an additional step to parse the string and convert it to JS, which can be done either at built time (slower builds), or at runtime (slightly larger payload);

[โฌ†๏ธ to overview](#overview)

<br />

#### 4. `{ย }` (Object Styles)

Support for defining __styles as objects__, using plain JavaScript objects:

- uses `camelCase` for property names, like we would do in [React Native](https://reactnative.dev/docs/next/style);
- migrating existing CSS requires a complete rewrite (don't know how we could automate this);
- we don't need additional tooling for syntax highlighting, as we get it out-of-the-box, by writting JS objects;
- without proper TS definitions shipped with the library, we won't get code completion (โ˜๏ธ we're only interested in TS, not Flow);

[โฌ†๏ธ to overview](#overview)

<br />

#### 5. TS

TypeScript support, either built-in, or via `@types` package, which should include:

- typings for the library API;
- Style Object typings (in case the library supports the object syntax);
- `Props` generics, where applicable (get type-safe access to component props types when defining dynamic styles);

[โฌ†๏ธ to overview](#overview)

<br />

#### 6. `&` ctx (Contextual Styles)

Support for __contextual styles__ allowing us to easily define __pseudo classes & elements__ and __media queries__ without the need to repeat the selector, as required in plain CSS:

- can either support the SASS/LESS/Stylus `&` parent selector;
- or provide any specific API or syntax to achieve the same result;

[โฌ†๏ธ to overview](#overview)

<br />

#### 7. Nesting

Support for __arbitrary nested selectors__:

- this feature allows for great flexibility, which might be useful, or required in some specific use-cases;
- to keep in mind that it also introduces too many ways of defining styles, which might cause chaos if we want to enforce good-practices, scalability and maintainability;

[โฌ†๏ธ to overview](#overview)

<br />

#### 8. Theming

Built-in support for Theming or managing tokens for a design system.
We **haven't tested out this feature**, so we're only taking notes which libraries express their support in their docs.

[โฌ†๏ธ to overview](#overview)

<br />

#### 9. `.css` (Static CSS extraction)

Defined styles are extracted as static `.css` files:

- it reduces the total bundle/page size, because we don't need additional runtime library, for injecting and evaluating the styles;
- this approach [affects **FCP/FMP**](#-performance-metrics) metrics negatively when users have an empty cache, and positively when having full cache;
- dynamic styling could potentially increase the generated file, because all style combinations must be pre-generated at built time;
- more suitable for less interactive solutions, where we serve a lot of different pages and we want to take advantage of cached styles (ie: e-commerce, blogs);

[โฌ†๏ธ to overview](#overview)

<br />

#### 10. `<style>` tag

Defined styles are injected inside `<style>` tags in the document's `<head>`:

- makes dynamic styling super easy;
- incurs larger payload, because we're also shipping a runtime library to handle dynamic styles;
- when using SSR, styles required for the initial render are shipped twice to the client: once during SSR, and again during [hydration](https://developers.google.com/web/updates/2019/02/rendering-on-the-web#rehydration-issues);
- more suited for highly dynamic and interactive (single page) applications;

[โฌ†๏ธ to overview](#overview)

<br />

#### 11. Atomic CSS

The ability to generate **atomic css classes**, thus increasing style reusability, and reducing duplication:

- this generates a separate CSS class for each CSS property;
- we'll get larger HTML files, because each element will contain a larger number of CSS classes applied;
- theoretically [atomic CSS-in-JS](https://sebastienlorber.com/atomic-css-in-js) reduces the scaling factor of our styles, [Facebook is doing it](https://www.youtube.com/watch?v=9JZHodNR184) as well;
- it's debatable if the CSS total size reduction, is greater than the HTML size increase (what is the final delta)
- theoretically, if the class names are shorter than the CSS property definition, the delta is positive so we're shipping less bytes (also depends a lot on compression, so not easy to draw a definite conclusion);
- however, we're basically moving part of bytes from CSS to HTML, which might be harder to cache if we have dynamic SSRed pages;
- also, depends a lot on what changes more frequently: the styles? or the markup?

[โฌ†๏ธ to overview](#overview)

<br />

#### 12. `className`

The library API returns a `string` which we have to add to our component or element;

- this is similar how we would normally style React components, so it's easy to adopt because we don't have to learn a new way of dealing with styles;
- to combine styles we have to use string concatenation;

[โฌ†๏ธ to overview](#overview)

<br />

#### 13. `<Styled />`

The API creates a wrapper (or `Styled`) component which includes the generated `className`(s):

- this technique was first introduced and popularized by [Styled Components](#styled-components), hence the name;
- we'll have to learn a new way to define styles, because we're not applying styles to elements, instead we're creating new components that include the styled elements;
- this also introduces a bit of indiretion when figuring out what native elements gets rendered inside a larger component;
- we end up creating components like `StyledButton` or `StyledList` instead of constants like `button_styles` or `list_styles`, so regarding naming it's pretty much the same thing;
- since the styles/class names are not re-used (we re-use the entire component), it makes sense to encapsulate the styles within the component and not think about 2 different aspects of the same entity;
- it's not React specific, can also be used with [Vue](https://github.com/styled-components/vue-styled-components);

[โฌ†๏ธ to overview](#overview)

<br />

#### 14. `css` prop

Allows passing styles using a special `css` prop, similar how we would define inline styles, but the library generates a unique CSS class name behind the scenes:

- it's a convenient and ergonomic API;
- this technique was popularized by [Emotion](#emotion) v10;
- it's seems to be available only for React/JSX-based syntax

[โฌ†๏ธ to overview](#overview)

<br />

#### 15. Framework agnostic

Allows usage without, or with any framework. Some libraries are built specifically for React only.
**NOTE**: some libraries like **Stitches** or **Emotion** document only React usage, although they have a **core** that's framework agnostic.

[โฌ†๏ธ to overview](#overview)

<br />

#### 16. Page size delta

The total page size difference in kB (transferred gzipped & minified / uncompressed & minified) compared to __CSS Modules__, for the entire index page production build using Next.js:

- keep in mind that this includes an almost __empty page__, with only a couple of components;
- this is great for evaluating the minimal overhead, but does NOT offer any insight on the scaling factor: logarithmic, linear, or exponential;

NOTE: all builds were done with Next.js `11.1.0` and the values are taken from Chrome Devtools Network tab, [Transferred over network vs Resource size](https://developers.google.com/web/tools/chrome-devtools/network/reference#uncompressed).

[โฌ†๏ธ to overview](#overview)

<br/>

---

<br/>

### Overall observations

The following observations apply for all solutions (with minor pointed exceptions).

<br />

#### โœ… Code splitting

Components used only in a specific route will only be bundled for that route. This is something that Next.js performs out-of-the-box.

<br />

#### โœ… Global styles

All solutions offer a way to define global styles, some with a dedicated API.

- **Compiled** is the only library that doesn't have a dedicated API for global styles at the moment, but it is [planned](https://github.com/atlassian-labs/compiled/issues/62)

<br />

#### โœ… SSR

All solutions offer Server-Side Rendering support and are easy to integrate with Next.js.

<br />

#### โœ… Vendor prefixes

All solutions automatically add vendor specific prefixes out-of-the-box.

- **vanilla-extract** is the only library that requires [manual setup](https://github.com/seek-oss/vanilla-extract/blob/master/docs/treat-migration-guide.md#autoprefixer-is-no-longer-included)

<br />

#### โœ… Unique class names

All solutions generate unique class names, like CSS Modules do. The algorithm used to generate these names varies a lot between libraries:

- some libraries use a **hashing** algorithm, requiring more computing, but resulting in idempotent names (for example: `.heading` style from `Card` component will always have the `.Card_heading_h7Ys5` hash);
- other libraries use **counting**, basically incrementing either a number (`.heading-0-2-1`, `.input-0-2-2`), or the alphabet letters (`a, b, c, ... aa, ab, ac`, etc), making this approach more performant, but resulting in non-idempotent class names (can't figure out if this has any potential drawbacks or not);

<br />

#### โœ… No inline styles

None of the solutions generate inline styles, which is an older approach, used by Radium & Glamor. The approach is [less performant than CSS classes](https://esbench.com/bench/5908f78199634800a0347e94), and it's [not recommended](https://reactjs.org/docs/dom-elements.html#style) as a primary method for defining styles. It also implies using JS event handlers to trigger pseudo classes, as inline styles do not support them. Apparently, all modern solutions nowadays moved away from this approach.

<br />

#### โœ… Full CSS support

All solutions support most CSS properties that you would need: **pseudo classes & elements**, **media queries** and **keyframes** are the ones that we've tested.

<br />

#### โœ… Critical CSS extraction

Most solutions market themselves as being able to _**"extract critical CSS"**_ during SSR. Please note that this does **NOT refer** to [above-the-fold critical CSS extraction](https://web.dev/extract-critical-css/), as we initially thought.

What they actually do:
- during SSR, they only generate styles for the **visible** elements of the static rendered page;
- they don't inject CSS for elements that are dynamically rendered, or lazy loaded;

With 100% static CSS, there would be actually no benefit. With dynamic pages that render very few elements on the server, and most components are rendered dynamically on the client, the benefit increases.

**EXCEPTION**: libraries that use [static CSS extraction](#9-css-static-css-extraction).

<br />

#### ๐ŸŸ  Performance Metrics

Understanding how these features affect [Core Web Vitals](https://web.dev/vitals/#core-web-vitals) and [Performance Metrics](https://web.dev/lighthouse-performance/#metrics) in general is an extremely important factor to consider, and the way styles are delivered to the client has probably the biggest impact, so let's analyse this in detail.

Also, there are 2 different scenarios we need to consider:

- ๐Ÿ“ญ **Empty cache**: the user visits our page for the first time, or a returning user visits our page after the cache was invalidated (a new version was released);
- ๐Ÿ“ฌ **Full cache**: a returning user visits our page, and has all static resources cached (`.js`, `.css`, media, etc);

<br />

#### 1. `.css` file extraction

Solutions that generate `.css` static files, which you normally would include as `<link>` tag(s) in the `<head>` of your page, are basically [rendering-blocking resources](https://developers.google.com/web/fundamentals/performance/critical-rendering-path/render-blocking-css). This highly affects **FCP**, **LCP** and any other metric that follows.

๐Ÿ“ญ **Empty cache**
If the user has an empty cache, the following needs to happen, **negatively** impacting **FCP** and **LCP**:

- the browser needs to make an additional request, which implies a full **RTT** (Round Trip Time) to our server;
- transfer all CSS file content;
- parse it and build the CSSOM;
- these will delay any rendering of the `<body>`, even if the entire HTML is already loaded, and it may even be eagerly parsed, and some resources already fetched in advance;

It's true that you can fetch in **parallel** other `<head>` resources (additional `.css` or `.js` files), but this is generally a bad practice;

๐Ÿ“ฌ **Full cache**
However, on subsequent visits, the entire `.css` resource would be cached, so **FCP** and **LCP** would be positively impacted.

<br />

๐Ÿ’ก **Key points**
This solution appears to be better suited when:
- we have many Server Side Rendered pages that our users visit, maybe even containing a common `.css` file that can be cached when visiting other pages;
- we don't update the styles frequently, so they can be cached for longer periods of time;
- we want to optimize for returning visitors, affecting first-time visits instead;

<br />

#### 2. `<style>` tag injected styles

During **SSR**, styles will be added as `<style>` tag(s) in the `<head>` of the page. Keep in mind that these usually do NOT include all styles needed for the page, because most libraries perform [Critical CSS extraction](#-critical-css-extraction), so these `styles` should be usually smaller than the entire `.css` static file discussed previously.

๐Ÿ“ญ **Empty cache**
Because we're shipping less CSS bytes, and they are inlined inside the `.html` file, this would result in faster **FCP** and **LCP**:

- we don't need additional requests for `.css` files, so the browser is not blocked;
- if we move all other `.js` files requests to the end of the document, `<head>` won't do any requests, so rendering will occur super fast;
- however, eventually we would ship additional bytes, that were not needed with static `.css` extraction:
- the runtime library (between 1.6kB - 20kB);
- the styles required for the page, bundled in `.js` files along with the components, during [hydration](https://developers.google.com/web/updates/2019/02/rendering-on-the-web#rehydration-issues) (this includes all the critical CSS already shipped inside the `<style>` tag + others);
- all these files are required to be fetched, parsed and executed to get a **fully interactive** page;

๐Ÿ“ฌ **Full cache**
When the user's cache is full, the additional `.js` files won't require fetching, as they are already cached.
However, if the page is **SSRed**, the inlined critical CSS rendered in the `<style>` tag of the document will be downloaded again, unless we deal with static HTML that can be cached as well, or we deal with HTML caching on our infrastructure.

But, by default, we will ship extra bytes on every page HTTP request, regardless if it's cached or not.

<br />

๐Ÿ’ก **Key points**
This solution appears to be better suited when:
- we deal with SPA (Single Page Applications), where we have one (or few) SSR pages;
- we update the styles frequently, so even if they could be cached, it won't have a positive impact;
- we want to optimize for first-time visitors, affecting returning visitors instead;

<br />

#### ๐ŸŸ  Dead code removal

Most solutions say they _remove unused code/styles_. This is only **half-true**.

Unused code is indeed more difficult to accumulate, especially if you compare it to plain `.css` files as we used to write _a decade ago_. But when compared to CSS Modules, the differencies are not that big. Any solution that offers the option to define **arbitrary selectors** or **nested styles** will bundle them, regardless if they are used or not inside our component. We've managed to ship unused SSR styles with all the tested solutions.

True & full unused code removal is difficult to implement, as the CSS syntax is not type-checked, nor statically analyzable. Also, the dynamic nature of components make it practically impossible in certain scenarios, especially when the markup is dynamically rendered:
- `& span`: descendant elements;
- `&:nth-child()`: certain pseudo selectors;
- `& .bg-${color}`: dynamic selectors;
- `.parent &`: parent selectors;

Basically, what we get is code removal when we delete the component, or we don't import it anymore. That's implicit behaviour, because the styles are a direct dependency of the component. When the component is gone, so are its styles.

<br />

#### ๐ŸŸ  Debugging / Inspecting

There are 2 methods to inject CSS into the DOM & update it from JavaScript:

<br />

##### 1. Using `<style>` tag(s)

This approach implies adding one or more `<style>` tag(s) in the DOM (either in the `<head>` or somewhere in the `<body>`), using [.appendChild()](https://developer.mozilla.org/en-US/docs/Web/API/Node/appendChild) to add the `<style>` Node(s), in addition with either [.textContent](https://developer.mozilla.org/en-US/docs/Web/API/Node/textContent), [.innerHTML](https://developer.mozilla.org/en-US/docs/Web/API/Element/innerHTML) to update the `<style>` tag(s).

- using this approach, we can easily _see_ what styles get added to the DOM, because we can inspect the DOM from our DevTools, like any other DOM Node;
- using only one `<style>` tag and updating its whole content, could be slow to update the entire DOM when we actually changed only a tiny set of CSS rule(s);
- most libraries use this solution in `DEVELOPMENT` mode, because it provides a better debugging experience;
- **TypeStyle** uses this in `PRODUCTION` also;

<br />

##### 2. Using `CSSStyleSheet` API

First used by **JSS**, this method uses [`CSSStyleSheet.insertRule()`](https://developer.mozilla.org/en-US/docs/Web/API/CSSStyleSheet/insertRule) to inject CSS rules directly into the **CSSOM**.

- using this approach it's a bit more difficult to _see_ what styles get injected into the CSSOM, because even if you see the CSS applied on the elements (thanks to [CSS-in-JS support in Chrome](https://developer.chrome.com/blog/css-in-js/)) it will point to an empty `<style>` tag;
- to see all the injected styles, you'll have to select the `<style>` tag;
- get access to it via `$0` in Chrome DevTools (or get a reference to it in any other way, using the DOM API);
- access `.sheet.cssRules` on the `<style>` tag to see the Array of CSS rules that it contains;
- this method is apparently more performant than the previous one, during dynamic styles update, so most libraries use this method in `PRODUCTION`;
- performance gains apply only when adding new CSS rules, or updating existing ones (ie: dynamic styles update at runtime);
- **JSS** and **Stitches** use it in `DEVELOPMENT` mode as well;

<br />

#### โŒ No component deduping

If the same component is imported by 2 different routes, it will be send twice to the client. This is surely a limitation of the bundler/build system, in our case Next.js, and __not related to the CSS-in-JS solution__.

In Next.js, code-splitting works at the route level, bundling all components required for a specific route, but according to their [official blog](https://nextjs.org/blog/next-9-2#improved-code-splitting-strategy) and [web.dev](https://web.dev/granular-chunking-nextjs/) if a component is used in __more than 50%__ of the pages, it should be included in the `commons` bundle. However, in our example, we have 2 pages, each of them importing the `Button` component, and it's included in each page bundle, not in the `commons` bundle. Since the code required for styling is bundled with the component, this limitation will impact the styles as well, so it's worth keeping this in mind.

<br />

---

<br />

### CSS Modules

This is a well established, mature and solid approach. Without a doubt, it's a great improvement over BEM, SMACCS, OOCSS, or any other scalable CSS methodology to structure and organize our CSS, especially in component-based applications.

Launched in __2015__ | [Back to Overview](#overview)

<br />

- โœ… __Context-aware code completion__
- โœ… __Framework agnostic__
- โŒ __No Styles/Component co-location__
- โŒ __No TypeScript support__
- โŒ __No Atomic CSS__
- โŒ __No Theming support__

- __Styles definition method(s)__
- โœ… plain CSS
- โŒ Style Objects

- __Styles nesting__
- โŒ Contextual styles: _(requires SASS, LESS or Stylus)_
- โœ… Abitrary nesting

- __Styles apply method(s)__
- โœ… `className`
- โŒ `styled` component
- โŒ `css` prop

- __Styles output__
- โœ… `.css` file extraction
- โŒ `<style>` tag injection

<br />

This is the baseline we'll consider when comparing all the following __CSS-in-JS__ solutions. Checkout the [motivation](#motivation) to better understand the limitations of this approach that we're trying to fill.

<br />

| | Transferred / gzipped | Uncompressed |
| :-------------- | --------------------: | -----------: |
| Index page size | 76.7 kB | 233 kB |

<br />

```
Page Size First Load JS
โ”Œ โ—‹ / 2.19 kB 68.7 kB
โ”œ โ”” css/1d1f8eb014b85b65feee.css 450 B
โ”œ /_app 0 B 66.5 kB
โ”œ โ—‹ /404 194 B 66.7 kB
โ”” โ—‹ /other 744 B 67.2 kB
โ”” css/1c8bc5a96764df6b92b4.css 481 B
+ First Load JS shared by all 66.5 kB
โ”œ chunks/framework.895f06.js 42 kB
โ”œ chunks/main.b2b078.js 23.1 kB
โ”œ chunks/pages/_app.40892d.js 555 B
โ”œ chunks/webpack.ddd010.js 822 B
โ”” css/a92bf2d3acbab964f6ac.css 319 B
```

<br/>

---

<br/>

### Styled JSX

Very simple solution, doesn't have a dedicated website for documentation, everything is on Github. It's not popular, but it is the built-in solution in Next.js.

Version: __`4.0`__ | Maintained by [Vercel](https://github.com/vercel) | Launched in __2017__ | [View Docs](https://github.com/vercel/styled-jsx) | ...ย [backย toย Overview](#overview)

<br />

- โœ… __Styles/Component co-location__
- ๐ŸŸ  __Context-aware code completion__: to get syntax highlighting & code completion, an editor extension is required
- ๐ŸŸ  __TypeScript support__: `@types` can be additionaly installed, but the API is too minimal to require TS
- โŒ __No Atomic CSS__
- โŒ __No Theming support__
- โŒ __Not Framework agnostic__

- __Styles definition method(s)__
- โœ… Tagged Templates
- โŒ Style Objects

- __Styles nesting__
- โŒ Contextual styles
- โœ… Abitrary nesting

- __Styles apply method(s)__
- โœ… `className`
- โŒ `styled` component
- โŒ `css` prop

- __Styles output__
- โŒ `.css` file extraction
- โœ… `<style>` tag injection

<br />

#### Other benefits

- ๐Ÿ˜Œ out-of-the-box support with Next.js
- ๐Ÿ‘ for user input styles, it generates a new class name for each change, but it removes the old one

<br />

#### Worth mentioning observations

- ๐Ÿ˜ unlike CSS modules, we can target HTML `elements` also, and it generates unique class names for them (not sure if it's a good practice, though)
- ๐Ÿค“ we'll need to optimize our styles by [splitting static & dynamic styles](https://github.com/vercel/styled-jsx#dynamic-styles), to avoid rendering duplicated styles
- ๐Ÿคจ unique class names are added to elements, even if we don't target them in our style definition, resulting in un-needed slight html pollution (optimizing this is cumbersome, and it's _a lot of work for little benefit_)
- ๐Ÿ˜• it will bundle any defined styles, regardless if they are used or not, just like plain CSS
- ๐Ÿ˜ข there's no support for __contextual styles__, so defining __pseudo classes__ or __media queries__ has the same downsides as plain CSS, requiring selectors/class names duplication (a [SASS plugin](https://github.com/vercel/styled-jsx#css-preprocessing-via-plugins) is required to get this feature)

<br />

#### Conclusions

Overall, we felt like writting plain CSS, with the added benefit of being able to define the styles along with the component, so we __don't need an additional `.css` file__. Indeed, this is the philosophy of the library: supporting CSS syntax inside the component file. We can __use any JS/TS constants of functions__ with string interpolation. Working with __dynamic styles is pretty easy__ because it's plain JavaScript in the end. We get all these benefits at a very low price, with a pretty __small bundle overhead__.

The downsides are the overall experience of writting plain CSS. __Without nesting support__ pseudo classes/elements and media queries getting pretty cumbersome to manage.

<br />

| | Transferred / gzipped | Uncompressed |
| :-------------- | --------------------: | -----------: |
| Index page size | 79.5 kB | 245 kB |
| vs. CSS Modules | __+2.8 kB__ | __+12 kB__ |

<br />

```
Page Size First Load JS
โ”Œ โ—‹ / 2.65 kB 72.6 kB
โ”œ /_app 0 B 70 kB
โ”œ โ—‹ /404 194 B 70.2 kB
โ”” โ—‹ /other 1.18 kB 71.2 kB
+ First Load JS shared by all 70 kB
โ”œ chunks/framework.895f06.js 42 kB
โ”œ chunks/main.b2b078.js 23.1 kB
โ”œ chunks/pages/_app.a4b061.js 4.12 kB
โ”” chunks/webpack.61f1b6.js 778 B
```

<br/>

---

<br/>

### Styled Components

For sure one of the most popular and mature solutions, with good documentation. It uses Tagged Templates to defines styles by default, but can use objects as well. It also popularized the `styled` components approach, which creates a new component along with the defined styles.

Version: __`5.3`__ | Maintained by [Max Stoiber](https://twitter.com/mxstbr) & [others](https://opencollective.com/styled-components#category-ABOUT) | Launched in __2016__ | [View Docs](https://styled-components.com/docs) | ...ย [backย toย Overview](#overview)

<br />

- โœ… __Styles/Component co-location__
- โœ… __TypeScript support__: `@types` must be additionaly installed, via DefinitelyTyped
- โœ… __Built-in Theming support__
- โœ… __Framework agnostic__
- ๐ŸŸ  __Context-aware code completion__: requires an editor extension/plugin
- โŒ __No Atomic CSS__

- __Styles definition method(s)__
- โœ… Tagged Templates
- โœ… Style Objects

- __Styles nesting__
- โœ… Contextual styles
- โœ… Abitrary nesting

- __Styles apply method(s)__
- โŒ `className`
- โœ… `styled` component
- โœ… `css` prop

- __Styles output__
- โŒ `.css` file extraction
- โœ… `<style>` tag injection

<br />

#### Worth mentioning observations

- ๐Ÿค“ we need to split static & dynamic styles, otherwise it will render duplicate output
- ๐Ÿ˜• bundles nested styles even if they are not used in component
- ๐Ÿ˜ต we can mix Tagged Templates with Styled Objects, which could lead to convoluted and different syntax for each approach (kebab vs camel, EOL character, quotes, interpolation, etc)
- ๐Ÿฅด some more complex syntax appears to be a bit cumbersome to get right (mixing animations with Styled Objects, dynamic styles based on `Props` variations, etc)
- ๐Ÿคซ for user input styles, it generates a new class name for each update, but it does NOT remove the old ones, appending indefinitely to the DOM

<br />

#### Conclusions

Styled components offers a novel approach to styling components using the `styled` method which creates a new component including the defined styles. We don't feel like writting CSS, so coming from CSS Modules we'll have to learn a new, more programatic way, to define styles. Because it allows both `string` and `object` syntax, it's a pretty flexibile solution both for migrating our existing styles, and for starting a project from scratch. Also, the maintainers did a pretty good job keeping up with most of the innovations in this field.

However before adopting it, we must be aware that it comes with a certain cost for our bundle size.

<br />

| | Transferred / gzipped | Uncompressed |
| :-------------- | --------------------: | -----------: |
| Index page size | 90.1 kB | 272 kB |
| vs. CSS Modules | __+13.4 kB__ | __+39 kB__ |

<br />

```
Page Size First Load JS
โ”Œ โ—‹ / 2.52 kB 83.1 kB
โ”œ /_app 0 B 80.6 kB
โ”œ โ—‹ /404 194 B 80.8 kB
โ”” โ—‹ /other 1.06 kB 81.7 kB
+ First Load JS shared by all 80.6 kB
โ”œ chunks/framework.895f06.js 42 kB
โ”œ chunks/main.b2b078.js 23.1 kB
โ”œ chunks/pages/_app.731ace.js 14.7 kB
โ”” chunks/webpack.ddd010.js 822 B
```

<br/>

---

<br/>

### Emotion

Probably the most comprehensive, complete and sofisticated solution. Detailed documentation, fully built with TypeScript, looks very mature, rich in features and well maintained.

Version: __`11.4`__ | Maintained by [Mitchell Hamilton](https://twitter.com/mitchellhamiltn) & [others](https://opencollective.com/emotion#category-ABOUT) | Launched in __2017__ | [View Docs](https://emotion.sh/docs/introduction) | ...ย [backย toย Overview](#overview)

<br />

- โœ… __Styles/Component co-location__
- โœ… __TypeScript support__
- โœ… __Built-in Theming support__
- โœ… __Context-aware code completion__: for using the `styled` components approach, an additional editor plugin is required
- โœ… __Framework agnostic__
- โŒ __No Atomic CSS__

- __Styles definition method(s)__
- โœ… Tagged Templates
- โœ… Style Objects

- __Styles nesting__
- โœ… Contextual styles
- โœ… Abitrary nesting

- __Styles apply method(s)__
- โœ… `className` _(using [@emotion/css](https://emotion.sh/docs/@emotion/css))_
- โœ… `styled` component
- โœ… `css` prop

- __Styles output__
- โŒ `.css` file extraction
- โœ… `<style>` tag injection

<br />

#### Other benefits

- ๐Ÿ˜Ž the `css` prop offers great ergonomics during development, however it seems to be a newer approach, based on [React 17 new `jsx` transform](https://reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html), and [configuring](https://emotion.sh/docs/css-prop) it is not trivial, differs on your setup, and implies some boilerplate (which should change soon and become easier)

<br />

#### Worth mentioning observations

- ๐Ÿ˜• bundles nested styles even if they are not used in component
- ๐Ÿคซ for user input styles, it generates a new class name for each update, but it does NOT remove the old ones, appending indefinitely to the DOM
- ๐Ÿ˜‘ using `styled` approach will add `3 kB` to our bundle, because it's imported from a separate package
- ๐Ÿค” don't know how to split static and dynamic styles, resulting in highly polluted duplicated styles for component variants, specifically problematic for SSR (same applies to `css` prop & `styled` components)

<br />

#### Conclusions

Overall Emotion looks to be a very solid and flexible approach. The novel `css` prop approach offers great ergonomics for developers. Working with dynamic styles and TypeScript is pretty easy and intuitive. Supporting both `strings` and `objects` when defining styles, it can be easily used both when migrating from plain CSS, or starting from scratch. The bundle overhead is not negligible, but definitely much smaller than other solutions, especially if you consider the rich set of features that it offers.

It seems it doesn't have a dedicated focus on performance, but more on Developer eXperience. It looks like a perfect "well-rounded" solution.

<br />

| | Transferred / gzipped | Uncompressed |
| :-------------- | --------------------: | -----------: |
| Index page size | 83.2 kB | 253 kB |
| vs. CSS Modules | __+6.5 kB__ | __+20 kB__ |

<br />

```
Page Size First Load JS
โ”Œ โ—‹ / 2.5 kB 76.4 kB
โ”œ /_app 0 B 73.9 kB
โ”œ โ—‹ /404 194 B 74.1 kB
โ”” โ—‹ /other 1.07 kB 74.9 kB
+ First Load JS shared by all 73.9 kB
โ”œ chunks/framework.895f06.js 42 kB
โ”œ chunks/main.6cb893.js 23.3 kB
โ”œ chunks/pages/_app.b6d380.js 7.68 kB
โ”” chunks/webpack.ddd010.js 822 B
```

<br/>

---

<br/>

### TypeStyle

Minimal library, focused only on type-checking. It is framework agnostic, that's why it doesn't have a special API for handling dynamic styles. There are React wrappers available, but the typings feels a bit convoluted.

Version: __`2.1`__ | Maintained by [Basarat](https://twitter.com/basarat) | Launched in __2017__ | [View Docs](https://typestyle.github.io/) | ...ย [backย toย Overview](#overview)

<br />

- โœ… __Styles/Component co-location__
- โœ… __TypeScript support__
- โœ… __Context-aware code completion__
- โœ… __Framework agnostic__
- ๐ŸŸ  __Built-in Theming support__: uses TS `namespaces` to define theming, which is [not a recommended TS feature](https://basarat.gitbook.io/typescript/project/namespaces) even by the author himself, or by TS core team member [Orta Therox](https://youtu.be/8qm49TyMUPI?t=1277).
- โŒ __No Atomic CSS__

- __Styles definition method(s)__
- โŒ Tagged Templates
- โœ… Style Objects

- __Styles nesting__
- โœ… Contextual styles
- โœ… Abitrary nesting

- __Styles apply method(s)__
- โœ… `className`
- โŒ `styled` component
- โŒ `css` prop

- __Styles output__
- โŒ `.css` file extraction
- โœ… `<style>` tag injection

<br />

#### Worth mentioning observations

- ๐Ÿ˜• bundles nested styles even if they are not used in component
- ๐Ÿ˜• it doesn't handle dynamic styles, so we have to use regular JS functions to compute styles
- ๐Ÿคจ when composing styles, we'll have to manually add some internal typings
- ๐Ÿค” don't know how to split dynamic and static styles, so it's very easy to create duplicated generated code with dynamic styles, specifically problematic with SSR
- ๐Ÿ˜ฑ it creates a single `<style>` tag with all the styles, and replaces it on update, and apparently it doesn't use `insertRule()`, not even in production builds, which might be an important performance drawback in large & highly dynamic UIs

<br />

#### Conclusions

Overall TypeStyle seems a minimal library, relatively easy to adopt because we don't have to rewrite our components, thanks to the classic `className` approach. However we do have to rewrite our styles, because of the Style Object syntax. We didn't feel like writting CSS, so there is a learning curve we need to climb.

With Next.js or React in general we don't get much value out-of-the-box, so we still need to perform a lot of manual work. The external [react-typestyle](https://github.com/Malpaux/react-typestyle) binding doesn't support hooks, it seems to be an abandoned project and the typings are too convoluted to be considered an elegant solution.

<br />

| | Transferred / gzipped | Uncompressed |
| :-------------- | --------------------: | -----------: |
| Index page size | 78.8 kB | 241 kB |
| vs. CSS Modules | __+2.1 kB__ | __+8 kB__ |

<br />

```
Page Size First Load JS
โ”Œ โ—‹ / 2.44 kB 72.1 kB
โ”œ /_app 0 B 69.7 kB
โ”œ โ—‹ /404 194 B 69.9 kB
โ”” โ—‹ /other 975 B 70.7 kB
+ First Load JS shared by all 69.7 kB
โ”œ chunks/framework.895f06.js 42 kB
โ”œ chunks/main.b2b078.js 23.1 kB
โ”œ chunks/pages/_app.5b0422.js 3.81 kB
โ”” chunks/webpack.61f1b6.js 778 B
```

<br/>

---

<br/>

### Fela

It appears to be a mature solution, with quite a number of users. The API is intuitive and very easy to use, great integration for React using hooks.

Version: __`11.6`__ | Maintained by [Robin Weser](https://twitter.com/robinweser) | Launched in __2016__ | [View Docs](https://fela.js.org/docs/) | ...ย [backย toย Overview](#overview)

<br />

- โœ… __Styles/Component co-location__
- โœ… __Built-in Theming support__
- โœ… __Atomic CSS__
- โœ… __Framework agnostic__
- ๐ŸŸ  __TypeScript support__: it exposes Flow types, which work ok, from our (limited) experience
- ๐ŸŸ  __Context-aware code completion__: styles defined outside the component require [explicit typing](https://github.com/andreipfeiffer/css-in-js/blob/fela/components/input.tsx#L29) to get code completion

- __Styles definition method(s)__
- ๐ŸŸ  Tagged Templates
- โœ… Style Objects

- __Styles nesting__
- โœ… Contextual styles
- โœ… Abitrary nesting

- __Styles apply method(s)__
- โœ… `className`
- โŒ `styled` component
- โŒ `css` prop

- __Styles output__
- โŒ `.css` file extraction
- โœ… `<style>` tag injection

<br />

#### Other benefits

- ๐Ÿ˜Œ easy and simple to use API, very intuitive
- ๐Ÿฅณ creates very short and atomic class names (like `a`, `b`, ...)
- ๐Ÿ˜Ž it has a lot of plugins that can add many additional features (but will also increase bundle size)

<br />

#### Worth mentioning observations

- ๐Ÿ˜• bundles nested styles even if they are not used in component
- ๐Ÿคจ when defining styles outside the component, we have to explicitly add some internal typings to get code completion
- ๐Ÿฅบ there's no actual TS support and the maintainer considers it a [low priority](https://github.com/robinweser/fela/issues/590#issuecomment-409373362)
- ๐Ÿค• without TS support, we cannot get fully type-safe integration into Next.js + TS (there are [missing types from the definition file](https://twitter.com/pfeiffer_andrei/status/1349106486740475904))
- ๐Ÿค” the docs say it supports string based styles, but they are a second-class citizen and they seem to work only for global styles
- ๐Ÿ˜ต some information in the docs is spread on various pages, sometimes hard to find without a search feature, and the examples and use cases are not comprehensive

<br />

#### Conclusions

Fela looks to be a mature solution, with active development. It introduces 2 great features which we enjoyed a lot. The first one is the basic principle that _"Style as a Function of State"_ which makes working with dynamic styles feel super natural and integrates perfectly with React's mindset. The second is atomic CSS class names, which should potentially scale great when used in large applications.

The lack of TS support however is a bummer, considering we're looking for a fully type-safe solution. Also, the scaling benefits of atomic CSS should be measured against the library bundle size.

<br />

| | Transferred / gzipped | Uncompressed |
| :-------------- | ------------------------: | ------------------------: |
| Index page size | 88.6 kB | 276 kB |
| vs. CSS Modules | __+11.9 kB__ | __+43 kB__ |

<br />

```
Page Size First Load JS
โ”Œ โ—‹ / 2.84 kB 81.7 kB
โ”œ /_app 0 B 78.9 kB
โ”œ โ—‹ /404 194 B 79 kB
โ”” โ—‹ /other 1.43 kB 80.3 kB
+ First Load JS shared by all 78.9 kB
โ”œ chunks/framework.2191d1.js 42.4 kB
โ”œ chunks/main.b2b078.js 23.1 kB
โ”œ chunks/pages/_app.32bc1d.js 12.6 kB
โ”” chunks/webpack.ddd010.js 822 B
```

<br/>

---

<br/>

### Stitches

Very young library, solid, modern and well-thought-out solution. The overall experience is just great, full TS support, a lot of other useful features baked in the lib.

Version: __`0.2.5 (beta)`__ | Maintained by [Modulz](https://github.com/modulz) | Launched in __2020__ | [View Docs](https://stitches.dev/docs) | ...ย [backย toย Overview](#overview)

<br />

- โœ… __Styles/Component co-location__
- โœ… __TypeScript support__
- โœ… __Context-aware code completion__
- โœ… __Built-in Theming support__
- โœ… __Framework agnostic__: _(available with `@stitches/core`)_
- โŒ __Atomic CSS__

- __Styles definition method(s)__
- โŒ Tagged Templates
- โœ… Style Objects

- __Styles nesting__
- โœ… Contextual styles
- โœ… Abitrary nesting

- __Styles apply method(s)__
- โœ… `className`
- โœ… `styled` component
- ๐ŸŸ  `css` prop _(used only to override `styled` components)_

- __Styles output__
- โŒ `.css` file extraction
- โœ… `<style>` tag injection

<br />

#### Other benefits

- ๐Ÿ˜Œ easy and simple to use API, a pleasure to work with
- ๐Ÿ˜Ž great design tokens management and usage
- ๐Ÿฅฐ documentation is exactly what we'd expect: no more, no less

<br />

#### Worth mentioning observations

- ๐Ÿ˜• bundles nested styles even if they are not used in component
- ๐Ÿค” dynamic styles can be defined either using built-in `variants` (for predefined styles), or styles created inside the component to get access to the `props`
- ๐Ÿง would help a lot to get the search feature inside the docs

<br />

#### Conclusions

Stitches is probably the most modern solution to this date, with full out-of-the-box support for TS. Without a doubt, they took some of the best features from other solutions and put them together for an awesome development experience. The first thing that impressed us was definitely the documentation. The second, is the API they expose which is close to top-notch. The features they provide are not huge in quantity, but are very well-thought-out.

However, we cannot ignore the fact that it's still in beta. Also, the authors identify it as _"near-zero runtime"_, but at __+9 kB gzipped__ it's debatable.

<br />

| | Transferred / gzipped | Uncompressed |
| :-------------- | ------------------------: | ------------------------: |
| Index page size | 82.0 kB | 250 kB |
| vs. CSS Modules | __+5.3 kB__ | __+17 kB__ |

<br />

```
Page Size First Load JS
โ”Œ โ—‹ / 2.43 kB 75.2 kB
โ”œ /_app 0 B 72.8 kB
โ”œ โ—‹ /404 194 B 73 kB
โ”” โ—‹ /other 984 B 73.8 kB
+ First Load JS shared by all 72.8 kB
โ”œ chunks/framework.895f06.js 42 kB
โ”œ chunks/main.b2b078.js 23.1 kB
โ”œ chunks/pages/_app.ff82f0.js 6.93 kB
โ”” chunks/webpack.61f1b6.js 778 B
```

<br/>

---

<br/>

### JSS

Probably the grandaddy around here, JSS is a very mature solution being the first of them, and still being maintained. The API is intuitive and very easy to use, great integration for React using hooks.

Version: __`10.7`__ | Maintained by [Oleg Isonen](https://twitter.com/oleg008) and [others](https://opencollective.com/jss#category-ABOUT) | Launched in __2014__ | [View Docs](https://cssinjs.org/) | ...ย [backย toย Overview](#overview)

<br />

- โœ… __Styles/Component co-location__
- โœ… __Built-in Theming support__
- โœ… __Framework agnostic__
- โœ… __TypeScript support__
- โœ… __Context-aware code completion__
- โŒ __No Atomic CSS__

- __Styles definition method(s)__
- ๐ŸŸ  Tagged Templates: _(available with additional [plugin](https://cssinjs.org/jss-plugin-template), with limited features)_
- โœ… Style Objects

- __Styles nesting__
- โœ… Contextual styles
- โœ… Abitrary nesting

- __Styles apply method(s)__
- โœ… `className`
- ๐ŸŸ  `styled` component _(available with additional [plugin](https://cssinjs.org/styled-jss))_
- โŒ `css` prop

- __Styles output__
- โŒ `.css` file extraction
- โœ… `<style>` tag injection

<br />

#### Other benefits

- ๐Ÿ˜Œ easy and simple to use API, very intuitive
- ๐Ÿ˜Ž it has a lot of plugins that can add many additional features (but will also increase bundle size)

<br />

#### Worth mentioning observations

- ๐Ÿ˜• bundles nested styles even if they are not used in component
- ๐Ÿ˜ณ keep in mind that [`react-jss` package](https://github.com/cssinjs/jss/blob/master/packages/react-jss/package.json#L47), which is used with React/Next.js, depends on [jss-preset-default](https://cssinjs.org/jss-preset-default), which includes many [plugins](https://github.com/cssinjs/jss/blob/master/packages/jss-preset-default/package.json#L35-L47) by default, so you don't need to manually add some of the plugins;
- ๐Ÿค” `react-jss` uses className by default. There's also `styled-jss` that uses __Styled Components__ approach, but it has no types, and couldn't make it work on top of `react-jss`;
- ๐Ÿ˜ค global styles were frustrating to setup, we've finally managed to used them thanks to [StackOverFlow](https://stackoverflow.com/questions/54201412/how-can-i-add-style-to-the-body-element-with-jss), because the docs have no mention of `injectSheet` API (or we couldn't find it anywhere);
- ๐Ÿ˜– the docs are generally difficult to follow, and finding the information you need is a cumbersome process:
- there is no search;
- there are a lot of plugins, so you don't know where to look for a particular feature;
- some plugins influence other plugins, or other docs pages, and they sometimes don't contain all the combinations of features, so the docs are not comprehensive (ie: we had to figure out on our own how to use **contextual styles** with **media queries**).

<br />

#### Conclusions

The API is similar in many ways to React Native StyleSheets, while the hooks helper allows for easy dynamic styles definition. There are many plugins that can add a lot of features to the core functionality, but attention must be payed to the total bundle size, which is significant even with the bare minimum only.

Also, being the first CSS-in-JS solution built, it lacks many of the modern features that focuses on developer experience.

<br />

| | Transferred / gzipped | Uncompressed |
| :-------------- | --------------------: | -----------: |
| Index page size | 94.9 kB | 293 kB |
| vs. CSS Modules | __+18.2 kB__ | __+60 kB__ |

<br />

```
Page Size First Load JS
โ”Œ โ—‹ / 2.45 kB 88 kB
โ”œ /_app 0 B 85.6 kB
โ”œ โ—‹ /404 194 B 85.8 kB
โ”” โ—‹ /other 992 B 86.6 kB
+ First Load JS shared by all 85.6 kB
โ”œ chunks/framework.2191d1.js 42.4 kB
โ”œ chunks/main.b2b078.js 23.1 kB
โ”œ chunks/pages/_app.5f0007.js 19.2 kB
โ”” chunks/webpack.9c89cc.js 956 B
```

<br/>

---

<br/>

### Goober

A very light-weight solution, with a loads of features.

Version: __`2.0`__ | Maintained by [Cristian Bote](https://twitter.com/cristianbote_) | Launched in __2019__ | [View Docs](https://goober.js.org/) | ...ย [backย toย Overview](#overview)

<br />

- โœ… __Styles/Component co-location__
- โœ… __Built-in Theming support__
- โœ… __TypeScript support__
- โœ… __Context-aware code completion__
- โœ… __Framework agnostic__
- โŒ __No Atomic CSS__

- __Styles definition method(s)__
- โœ… Tagged Templates
- โœ… Style Objects

- __Styles nesting__
- โœ… Contextual styles
- โœ… Abitrary nesting

- __Styles apply method(s)__
- โœ… `className`
- โœ… `styled` component (_see details below_)
- ๐ŸŸ  `css` prop (_is supported, but requires a separate babel plugin_)

- __Styles output__
- โŒ `.css` file extraction
- โœ… `<style>` tag injection

<br />

#### Other benefits

- ๐Ÿค really tiny
- ๐Ÿ˜Ž it supports a very wide range of defining styles, so it's pretty versatile and full featured in this regard (however, I fear that having all these options, a large team could mix various ways of defining styles, so it's more difficult to _enforce consistency_)

<br />

#### Worth mentioning observations

- ๐Ÿ˜• bundles nested styles even if they are not used in component
- ๐Ÿคซ for user input styles, it generates a new class name for each update, but it does NOT remove the old ones, appending indefinitely to the DOM
- ๐Ÿค” don't know how to split static and dynamic styles, resulting in highly polluted duplicated styles for component variants, specifically problematic for SSR
- ๐Ÿ˜ฑ it creates a single `<style>` tag with all the styles, and appends to it on update, and apparently it doesn't use `insertRule()`, not even in production builds, which might be an important performance drawback in large & highly dynamic UIs

<br />

#### Conclusions

Looking at Goober you cannot ask yourself what kind of magic did Cristian Bote do to fit all the features inside this tiny library. It is really mind blowing. It is marketed as being _"less than 1KB"_, which is not entirely accurate, but still... it's the smallest library we've tested.

<br />

| | Transferred / gzipped | Uncompressed |
| :-------------- | ------------------------: | ------------------------: |
| Index page size | 77.8 kB | 237 kB |
| vs. CSS Modules | __+1.1 kB__ | __+4 kB__ |

<br />

```
Page Size First Load JS
โ”Œ โ—‹ / 2.77 kB 71.1 kB
โ”œ /_app 0 B 68.3 kB
โ”œ โ—‹ /404 194 B 68.5 kB
โ”” โ—‹ /other 2.39 kB 70.7 kB
+ First Load JS shared by all 68.3 kB
โ”œ chunks/framework.895f06.js 42 kB
โ”œ chunks/main.b2b078.js 23.1 kB
โ”œ chunks/pages/_app.5ee014.js 2.42 kB
โ”” chunks/webpack.61f1b6.js 778 B
```

<br/>

---

<br/>

### Compiled

A rather new library, having the huge Atlassian platform supporting and probably using it. Many existing features, even more in development, or planned for development.

Version: __`0.6`__ | Maintained by [Atlassian](https://github.com/atlassian-labs) | Launched in __2020__ | [View Docs](https://compiledcssinjs.com/docs/) | ...ย [backย toย Overview](#overview)

<br />

- โœ… __Styles/Component co-location__
- โœ… __TypeScript support__
- โœ… __Context-aware code completion__
- โœ… __Atomic CSS__
- โŒ __Not Framework agnostic__
- โŒ __No Built-in Theming support__ _(at least at the moment, but it is [planned](https://github.com/atlassian-labs/compiled/issues/18))_

- __Styles definition method(s)__
- โœ… Tagged Templates
- โœ… Style Objects

- __Styles nesting__
- โœ… Contextual styles
- โœ… Arbitrary nesting

- __Styles apply method(s)__
- ๐ŸŸ  `className` _(only supported with a custom [ClassNames](https://compiledcssinjs.com/docs/class-names) component)_
- โœ… `styled` component
- โœ… `css` prop

- __Styles output__
- โŒ `.css` file extraction _(currently under development, will be shipped in 2021)_
- โœ… `<style>` tag injection

<br />

#### Other benefits

- ๐Ÿ˜Œ using the `css` prop is seamless and trivial, not requiring any special setup (unlike Emotion)

<br />

#### Worth mentioning observations

- ๐Ÿง styles are not placed in the `<head>` during SSR - instead they are placed right before the element using them in the `<body>`, which could potentially provide slightly faster Paint metrics, such as FCP, or LCP, because the browser can start rendering the body faster and incrementally, not waiting for the entire block of styles to be parsed
- ๐Ÿ˜• bundles nested styles even if they are not used in component
- ๐Ÿ˜” currently has no API for global styles, but it is [planned](https://github.com/atlassian-labs/compiled/issues/62) to be added
- ๐Ÿ˜ณ `ClassNames` API, which enables us to apply styles as class name strings, is a bit convoluted and weird at first sight.

<br />

#### Conclusions

Compiled is a very promising library. Considering that it offers both atomic CSS, and it plans to support static `.css` extraction, with excellent TypeScript support and style co-location, it would be quite unique (having only [style9](#style9) as a direct competitor).

Also, we cannot ignore that is has Atlassian supporting its development, which puts a (slightly) bigger weight on the confidence level.

The total bundle overhead is pretty small, the runtime library being quite light-weight. With static `.css` file extraction, this could potentially become even smaller.

<br />

| | Transferred / gzipped | Uncompressed |
| :-------------- | ------------------------: | ------------------------: |
| Index page size | 80.2 kB | 242 kB |
| vs. CSS Modules | __+3.5 kB__ | __+9 kB__ |

<br />

```
Page Size First Load JS
โ”Œ โ—‹ / 2.11 kB 71.8 kB
โ”œ /_app 0 B 66.5 kB
โ”œ โ—‹ /404 194 B 66.7 kB
โ”” โ—‹ /other 888 B 70.6 kB
+ First Load JS shared by all 66.5 kB
โ”œ chunks/framework.895f06.js 42 kB
โ”œ chunks/main.b2b078.js 23.1 kB
โ”œ chunks/pages/_app.ebe095.js 576 B
โ”œ chunks/webpack.ddd010.js 822 B
โ”” css/a92bf2d3acbab964f6ac.css 319 B
```

---

<br/>

### Linaria

Linaria is all about static CSS extraction and avoiding any runtime overhead.

Version: __`3.0 (beta)`__ | Maintained by [Callstack](https://github.com/callstack) | Launched in __2018__ | [View Docs](https://github.com/callstack/linaria#documentation) | ...ย [backย toย Overview](#overview)

<br />

- โœ… __Styles/Component co-location__
- โœ… __TypeScript support__
- โœ… __Context-aware code completion__
- โœ… __Framework agnostic__
- โœ… __Built-in Theming support__
- โŒ __No Atomic CSS__

- __Styles definition method(s)__
- โœ… Tagged Templates
- โŒ Style Objects

- __Styles nesting__
- โœ… Contextual styles
- โœ… Arbitrary nesting

- __Styles apply method(s)__
- โœ… `className`
- โœ… `styled` component
- โŒ `css` prop

- __Styles output__
- โœ… `.css` file extraction
- โŒ `<style>` tag injection

<br />

#### Other benefits

- ๐Ÿ˜Ž it's the only existing library at the moment (with a stable release) that supports both co-location & static CSS extraction (Compiled could also support this soon)

<br />

#### Worth mentioning observations

- ๐Ÿ˜• bundles nested styles even if they are not used in component
- ๐Ÿ˜” [global styling](https://github.com/callstack/linaria/blob/master/docs/BASICS.md#adding-global-styles) is documented, but we didn't get to make them work with Next.js
- ๐Ÿ˜ณ documentation is not top-notch, there isn't a dedicated website, no search feature and it feels like trial & error when trying to find a piece of information

<br />

#### Conclusions

Linaria is highly inspired from Astroturf, combining various features from other libraries.

Version 3 is currently in Beta, not sure what the changelog is compared to v2. It's still in development by the _React/Native geeks_ at **Callstack.io**, but we couldn't find which of the big players use it in production.

It seems to have a slightly larger overall page size (`2.9 KB`), but we didn't investigate where does this come from. Also, there's an open question if this overhead is fixed or if it scales.

PS: thanks to [Daniil Petrov](https://github.com/daniepetrov) for his PR with the Next.js integration

<br />

| | Transferred / gzipped | Uncompressed |
| :-------------- | ------------------------: | ------------------------: |
| Index page size | 79.4 kB | 239 kB |
| vs. CSS Modules | __+2.7 kB__ | __+6 kB__ |

<br />

```
Page Size First Load JS
โ”Œ โ—‹ / 4.99 kB 71.5 kB
โ”œ โ”” css/16f3e95ede28dcc048f2.css 423 B
โ”œ /_app 0 B 66.5 kB
โ”œ โ—‹ /404 194 B 66.7 kB
โ”” โ—‹ /other 3.59 kB 70.1 kB
โ”” css/3064299bff08067ec7dd.css 427 B
+ First Load JS shared by all 66.5 kB
โ”œ chunks/framework.895f06.js 42 kB
โ”œ chunks/main.b2b078.js 23.1 kB
โ”œ chunks/pages/_app.98e8c3.js 598 B
โ”œ chunks/webpack.ddd010.js 822 B
โ”” css/7739287c04a618ea0c54.css 295 B
```

<br/>

---

<br/>

### vanilla-extract

Modern solution with great TypeScript integration and no runtime overhead. It's pretty minimal in its features, straightforward and opinionated. Everything is processed at compile time, and it generates static CSS files. Successor of [Treat](#treat), also be called "Treat v3", is developed and maintained by the same authors.

Version: __`1.2`__ | Maintained by [Seek OSS](https://github.com/seek-oss/) | Launched in __2021__ | [View Docs](https://vanilla-extract.style/) | ...ย [backย toย Overview](#overview)

<br />

- โœ… __TypeScript support__
- โœ… __Built-in Theming support__
- โœ… __Context-aware code completion__
- โœ… __Framework agnostic__
- ๐ŸŸ  __Atomic CSS__: can be achieved with [Sprinkles](https://www.npmjs.com/package/@vanilla-extract/sprinkles)
- โŒ __No Styles/Component co-location__: styles must be placed in an external `.css.ts` file

- __Styles definition method(s)__
- โŒ Tagged Templates
- โœ… Style Objects

- __Styles nesting__
- โœ… Contextual styles
- โŒ Abitrary nesting

- __Styles apply method(s)__
- โœ… `className`
- โŒ `styled` component
- โŒ `css` prop

- __Styles output__
- โœ… `.css` file extraction
- โŒ `<style>` tag injection

<br />

#### Other benefits

- ๐Ÿ‘ฎ forbids __nested arbitrary selectors__ (ie: `& > span`), which might be seen as a downside, but it actually discourages bad-practices like __specificity wars__, which should be avoided when scaling CSS (however, this is impossible to be statically type-checked without _pattern matching_, so it will throw a runtime exception)
- ๐Ÿฅณ generates the same filename hash on build, if styles haven't changes, meaning that end-users benefit of CSS cache-ing even when deploying new versions with component updates only (logic, or content), without styles updates

<br />

#### Worth mentioning observations

- ๐Ÿ˜Œ in contrast with Treat, it relies on CSS Variables support, which means: 1) it doesn't work on IE, 2) is simpler and easier to maintain, 3) it supports other bundlers besides webpack
- ๐Ÿ˜• bundles all styles, exported or not, even if they are not used in component
- ๐Ÿ˜ฅ it doesn't handle dynamic styles: you can use built-in `variants` based on predefined types, or __inline styles__ for user-defined styles

<br />

#### Conclusions

We felt a lot like using CSS Modules: we need an external file for styles, we place the styles on the elements using `className`, we handle dynamic styles with __inline styles__, etc. However, we don't write CSS, and the overall experience with TypeScript support is magnificent, because everything is typed, so we don't do any __copy-paste__. Error messages are very helpful in guiding us when we do something we're not supposed to do.

vanilla-extract is built with restrictions in mind, with a strong user-centric focus, balacing the developer experience with solid TypeScript support. It's also worth mentioning that [Mark Dalgleish](https://twitter.com/markdalgleish), co-author of CSS Modules, works at Seek and he's also a contributor.

The authors vision is to think of vanilla-extract as a low-level utility for building higher-level frameworks, which will probably happen in the future.

<br />

| | Transferred / gzipped | Uncompressed |
| :-------------- | --------------------: | -----------: |
| Index page size | 76.7 kB | 231 kB |
| vs. CSS Modules | __+0.0 kB__ | __-2 kB__ |

<br />

```
Page Size First Load JS
โ”Œ โ—‹ / 2.09 kB 68.5 kB
โ”œ โ”” css/37c023369f5e1762e423.css 370 B
โ”œ /_app 0 B 66.4 kB
โ”œ โ—‹ /404 194 B 66.6 kB
โ”” โ—‹ /other 611 B 67 kB
โ”” css/a56b9d05c6da35ff125f.css 386 B
+ First Load JS shared by all 66.4 kB
โ”œ chunks/framework.895f06.js 42 kB
โ”œ chunks/main.700159.js 23.1 kB
โ”œ chunks/pages/_app.bfd136.js 565 B
โ”œ chunks/webpack.61f1b6.js 778 B
โ”” css/23b89d9ef0ca05e4b917.css 286 B
```

<br />

## Libraries not included

We know there are a lot of other libraries out there, besides the ones covered above. We're only covered the ones that have support for **React**, support for **SSR**, an easy integration with **Next.js**, good **documentation** and a sense of ongoing **support and maintenance**. Please checkout our [goals](#goals).

<br />

### Treat

[Treat](https://seek-oss.github.io/treat/) was initially included in the analysis with v1.6, but removed for a few reasons:

1. the library itself is replaced by [vanilla-extract](#vanilla-extract)
2. Next.js integration is not supported with v2
3. we couldn't upgrade to Next.js v11/webpack 5 even with v1

The main difference between vanilla-extract and Treat is that the latter supports IE and legacy browsers as well.

<br />

### style9

[Style9](https://github.com/johanholmerin/style9) is a new library, inspired by Facebook's own CSS-in-JS solution called stylex. Style9 is unique because it's the only open source library that supports both `.css` static extraction + atomic CSS, and/or styles co-location. It has TS support and easy to integrate with Next.js.

However, it has quite a few limitations (at least as of Feb 2021) that makes it practically unusable in a real production application that we would want to scale, both in code & team size:

- cannot use design tokens defined as `Enum` or `POJO`, only constant primitives are supported, which is a **big deal breaker**;
- dynamic styles are not trivial:
- it supports styles toggling, similar to `classNames` lib, but not dynamically/computed/expression based;
- for user styles, so we have to use inline styles;
- there is an experimental addon [style9-components](https://github.com/johanholmerin/style9-components.macro) that tries to solve this;
- no global styles support;
- no theming support (not a deal breaker for us):
- there is some exploration in this regard, with [style9-theme](https://github.com/johanholmerin/style9-theme.macro);
- documentation is not comprehensive, it contains a lot of code comments, without code examples, making it even more difficult to follow & understand

Some upsides:
- it's the first lib we've tested that actually doesn't bundle unused styles;
- it doesn't allow arbitrary seletors / nesting, which is a good thing, because it enforces good practices and consistency;
- it is framework agnostic;

As a conclusion, it wants to be a powerful solution with very interesting and unique set of features, but it's not mature yet. As far as we see, it's currently mostly designed towards more static solutions. Dynamic styling seems to be difficult to handle, at least for the moment.

<br />

### Tailwind

Not an actual CSS-in-JS library, more like a replacement for traditional CSS styling. It uses atomic CSS classes (some of them having multiple properties) that we attach to html elements. We don't write CSS, instead we use a different DSL to specify styles, pseudo classes, media queries, etc.

The reason we didn't include it in our thorough review is because it doesn't fully meet our [goals](#goals):
- it doesn't provide TS support, or type-safety
- we cannot use out own design tokens from `.ts` files to include them in `tailwind.config` (cannot `import` any file, cannot require `.ts`)
- using `tailwind.config` directly offers no type-safety when importing it, or using [`resolveConfig`](https://tailwindcss.com/docs/configuration#referencing-in-java-script)
- there is a [PR on Definitely Typed](https://github.com/DefinitelyTyped/DefinitelyTyped/pull/50921), but we're not sure if it will support the custom config, as well
- there might be workarounds, but these are just proofs that there isn't a clean way to achieve this
- dynamic styles have some limitations: we have to be aware of [purging](https://tailwindcss.com/docs/optimizing-for-production#writing-purgeable-html) to not get missing design tokens in production builds
- we have to learn a new DSL: some style are similar and easy to deduce from their CSS counterparts, others are pretty different, and we have to learn (`rounded`, `place-self/content`, `divide`, `ring`)
- some advanced CSS features, like [`::after` pseudo elements](https://github.com/tailwindlabs/tailwindcss/discussions/2119) are tricky
- there are libraries like [xwind](https://github.com/Arthie/xwind) which integrates Tailwind with CSS-in-JS solutions, which is supports our theory that Tawilwind is not a replacement for CSS-in-JS, not does it address the same problems

Some upsides:
- we don't write CSS, which is indeed difficult to master
- the entire team uses the same "styling system"
- a shitton of predefined design tokens, plus the ability to customize them
- successfully bundles only used styles, doesn't bundle all classes defined in `tailwind.config`
- exception: keyframe animations (spin, ping, etc)
- beware of purging

Tailwind seems to be more than a _styling tool_, it also offers some out-of-the-box utils + a ready-made design system that you can use right away.

<br />

### Aphrodite

It's not a popular solution, the approach is similar to **React Native StyleSheets** way of styling components. Has built-in TypeScript support and a simple API.

- global styles are a bit cumbersome to define
- able to nest media queries & pseudo selectors, but cannot nest arbitrary rules/selectors
- no dynamic out-of-the-box support, so we have to get around that, like inline styles I guess, or like in React Native
- doesn't add any real value, except the ergonomics to colocate styles with the component.

<br />

### Glamor

I got it started with Next.js, but it feels fragile. The [Glamor official example](https://github.com/vercel/next.js/tree/canary/examples/with-glamor) throws an error regarding `rehydrate`. When commenting it out, it works, but not sure what the consequences are.

- it looks like an unmaintained or abandoned package
- documentation is pretty minimal
- lacks any TS support
- has a lot of documented experimental features, marked as "buggy"
- it feels like a side/internal project at FB, that is not used anymore.

<br />

### Cxs

Didn't manage to start it with Next.js + TypeScript. The [official example](https://github.com/vercel/next.js/tree/canary/examples/with-cxs) uses version 3, while today we have version 6. The example doesn't work, because the API has changed.

The solution looked interesting, because it is supposed to be very light-weight.

<br />

### Astroturf

Didn't manage to start it with Next.js + TypeScript. There was an [official example](https://github.com/vercel/next.js/tree/canary/examples/with-astroturf) that used an older version of Next.js, but the example if not there anymore.

The solution is not that popular, but it was the first to use `.css` extraction with collocated styles.

<br />

### Otion

Looks promising, atomic css and light-weight. It has a working [Next.js example](https://github.com/kripod/otion/tree/main/packages/example-nextjs), but we didn't consider it because it lacks any documentation.

<br />

### Styletron

It looks like a not so popular solution, which also lacks support for TypeScript. It looks like the maintainers work at Uber and they use it internally. It focused on generating unique atomic CSS classes, which could potentially deduplicate a lot of code.

<br />

### Radium

The project was put in [Maintenance Mode](https://formidable.com/blog/2019/radium-maintenance/). They recommend other solutions.

<br />

### Glamorous

The project was [discontinued](https://github.com/paypal/glamorous/issues/419) in favor of Emotion.

<br />

## Running the examples

Each implementation sits on their own branch, so we can have a clear separation at built time.

```bash
# install dependencies
yarn

# for development
yarn dev

# for production
yarn build
yarn start
```

<br />

## Feedback and Suggestions

To get in touch, my DMs are open [@pfeiffer_andrei](https://twitter.com/pfeiffer_andrei).

<br />

**Special thanks and appreciations** go to everyone that helped putting this document together, and making it more accurate:

- Martin Hochel ([@martin_hotell](https://twitter.com/martin_hotell))
- Oleg Isonen ([@oleg008](https://twitter.com/oleg008))