DEV Community

Discussion on: Why Tailwind CSS

Collapse
 
silvenon profile image
Matija Marohnić • Edited

Great post! Very informative and much more relevant than the opposing one I read.

Regarding the opposing CSS variables point, I want to add that people can always configure Tailwind to use var(...) as color value, for example:

module.exports = {
  theme: {
    colors: {
      purple: "var(--color-purple)"
    }
  }
}
Enter fullscreen mode Exit fullscreen mode

So it's a non-issue.