Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/vltansky/postcss-ng-tailwind-darkmode


https://github.com/vltansky/postcss-ng-tailwind-darkmode

Last synced: 22 days ago
JSON representation

Awesome Lists containing this project

README

        

# PostCSS Angular tailwind darkmode

[PostCSS] plugin to force work angular emulated encapsulation with tailwind darkmode based on class.

```css
.dark .test {
color: red;
}
```
transforms to:
```css
.dark .test, :host-context(.dark) .test {
color: red;
}
```