tailwindcss-theming icon indicating copy to clipboard operation
tailwindcss-theming copied to clipboard

CSS-variables-based swappable themes for Tailwind CSS

Results 25 tailwindcss-theming issues
Sort by recently updated
recently updated
newest added

Bumps [path-parse](https://github.com/jbgutierrez/path-parse) from 1.0.6 to 1.0.7. Commits See full diff in compare view [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=path-parse&package-manager=npm_and_yarn&previous-version=1.0.6&new-version=1.0.7)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter...

dependencies

Bumps [ws](https://github.com/websockets/ws) from 7.3.1 to 7.4.6. Release notes Sourced from ws's releases. 7.4.6 Bug fixes Fixed a ReDoS vulnerability (00c425ec). A specially crafted value of the Sec-Websocket-Protocol header could be...

dependencies

Bumps [hosted-git-info](https://github.com/npm/hosted-git-info) from 2.8.8 to 2.8.9. Changelog Sourced from hosted-git-info's changelog. 2.8.9 (2021-04-07) Bug Fixes backport regex fix from #76 (29adfe5), closes #84 Commits 8d4b369 chore(release): 2.8.9 29adfe5 fix: backport...

dependencies

Bumps [lodash](https://github.com/lodash/lodash) from 4.17.20 to 4.17.21. Commits f299b52 Bump to v4.17.21 c4847eb Improve performance of toNumber, trim and trimEnd on large input strings 3469357 Prevent command injection through _.template's variable...

dependencies

Bumps [handlebars](https://github.com/wycats/handlebars.js) from 4.7.6 to 4.7.7. Changelog Sourced from handlebars's changelog. v4.7.7 - February 15th, 2021 fix weird error in integration tests - eb860c0 fix: check prototype property access in...

dependencies

Bumps [y18n](https://github.com/yargs/y18n) from 4.0.0 to 4.0.1. Changelog Sourced from y18n's changelog. Change Log All notable changes to this project will be documented in this file. See standard-version for commit guidelines....

dependencies

After TailwindCSS introduced [new color opacity utilities](https://github.com/tailwindcss/tailwindcss/pull/1627) current approach of opacity and colors generation became not inlined with the official way colors are generated in tailwindCSS. As a result classes...

enhancement

``` const coolTheme = new Theme() .setName('cool-theme') .addColors({ black: '#202121', white: '#ffffff', brand: { 0: '#d1d4df', 1: '#4b5f85', 2: '#293142', }, }) .addOpacityVariant('hover', 0.1, ['brand']); ``` I have to use...

enhancement

Is there any chance that you'll allow for more variants than dark, light and no-preference? It would be really helpful if you did

enhancement

Currently, this: ```js setVariable('input', '#d2d6dc', 'borderColor') ``` will generate an `--input` variable by default. If no prefix is given, it should be infered from the `path`, `borderColor` in this case,...

enhancement