Skip to content

Latest commit

 

History

History
30 lines (23 loc) · 2.37 KB

README.md

File metadata and controls

30 lines (23 loc) · 2.37 KB

Tailwind Converter Website

This repository contains the code behind this site that converts almost any supported CSS media query, data attribute, or class into TailwindCSS. Just type, copy/paste, or drag/drop valid CSS into the editor panel, and the correct TailwindCSS classes will show up.

Why?

When I first tried to convert an old CSS design to Tailwind I looked up a CSS to TailwindCSS converter. I found this site. While the site was aesthetically pleasing and easy-to-use, it lacked some significant features, such as prefixing of any kind, shorthand value support, etc. This inspired me to begin coding this project over a year ago.

While working on the project, I found this site, which utilizes this package, which admittedly has a little bit more coverage of all CSS features compared to my project at this point. However, I found that the practice of translating everything to @apply directives shortcut some of the more complex prefixing issues and goes against TailwindCSS best practices. Additionally, the lack of word wrap and default arbitrary value support leads to a suboptimal DX.

So, I made my own converter, with the DX of the first solution and the comprehensiveness of the second site. My goal was to make it as easy as possible to copy any subset of classes in any format needed, as well as to reduce the number of different selectors by using prefixes.

Roadmap

  • Recursive Nesting
  • Animation & transition shorthand support
  • Border & outline shorthand support
  • Nested @media and @support query support
  • Arbitrary value support
  • Data attribute support
  • Pseudo-class/element support
  • Support for multiple CSS selectors
  • Create a mode for HTML to be input, such that the HTML and CSS can be merged into one HTML file where possible. (Must come after support for multiple CSS selectors)
  • Fix browser favicon
  • Fix CodeMirror's error highlighting
  • Resizable panels
  • Error handling bad CSS and resetting the display without getting stuck
  • CSS constant variable support (Now works but only with global root variables)
    • Auto generate tailwind.config.js file with CSS variables
  • ...