Saved searches Use saved searches to filter your results more quickly Cancel Create saved search Sign in Sign up Reseting focus {{ message }} david-plugge / tailwindcss-extend Public Notifications You must be signed in to change notification settings Fork 1 Star 16 ...
Editing the theme inside the tailwind config doesn´t feel very natural due to the use of css in js. With tailwindcss-extend you can set your config directly inside (post-)css! This: ```css :config { theme { extend { colors { brand: #fa3; } } } } ``` compiles to: ```t...
Editing the theme inside the tailwind config doesn´t feel very natural due to the use of css in js. With tailwindcss-extend you can set your config directly inside (post-)css!This::config { theme { extend { colors { --brand: #fa3; } } } }compiles to:...
There are plenty of other things that we can do with animation, and plenty of other properties that can be animated, including element colors and sizes. And again, as with our previous animation and transition examples, the coding required here is not really related to the animation itself -...
See this issue in Radix Colors for more information: radix-ui/colors#29 The idea is based on two observations: Dark mode is missing a very dark Radix app background color. Tailwindcss introduced a 950 shade to address this problem. Light...
@nuxtjs/tailwindcssnow configures thepurgeoption of TailwindCSS and let the user extend it easily while keeping a minimaltailwind.config.jstemplate Modules / Themes can easily extend the user tailwind config (adding Typography plugin, settings colors, etc) ...
As far as I can see the generation already works according to this change in tailwindcss. For example, if I use the following basic tailwind configuration: module.exports = { theme: { extend: { colors: { red: { 5000: '#FF0000' } } } } } Now I run npm run run-cli and the res...