tailwind-to-css

0.0.6 • Public • Published

tailwind-to-css

Intro

generate vanilla css styles from your html tailwind classes

Install

npm  i tailwind-to-css
yarn add tailwind-to-css

Usage

import {createStyle} from 'tailwind-to-css'

// Input
createStyle(`
<div class="p-2 text-4xl font-bold">
        Hello World
<span class="underline text-orange-500">Yess</span>
</div>`,
     false).then((data) =>
{
    console.log(data);
})

// Output
// console --> '<style>.p-2{padding:0.5rem}.text-4xl{font-size:2.25rem;line-height:2.5rem}.font-bold{font-weight:700}.text-orange-500{--tw-text-opacity:1;color:rgb(249 115 22 / var(--tw-text-opacity))}.underline{-webkit-text-decoration-line:underline;text-decoration-line:underline}</style>'

Options

The createStyle function takes in two parameters

createStyle(HTML_STRING, withDefault)

withDefault :- This is should be false if you do not want the default tailwindcss styles return

Option Default Required
HTML_STRING undefined true
withDefault true false

Readme

Keywords

none

Package Sidebar

Install

npm i tailwind-to-css

Weekly Downloads

556

Version

0.0.6

License

MIT

Unpacked Size

389 kB

Total Files

6

Last publish

Collaborators

  • kromate