UNPKG

tailwind-color-adder

Version:

An automation script used to add all the colors variable from root css to tailwind for easy usage

13 lines (10 loc) 216 B
import './App.css'; function App() { return ( <div className="App"> <div className="bg-blue-600">Empty Div</div> <div className="bg-varColor">Empty Div</div> </div> ); } export default App;