twglow
v0.0.10
Published
A tailwind css plugin for making your elements glow
Readme
About
This is a tailwind css plugin for making your elements glow.
Features
- Drama Effect: use the
dramaclass. e.g.drama-green-500 drama-20

- Border Glow Effect: use the
border-glowclass. e.g.border-glow-blue-500

- Text Glow Effect: use the
text-glowclass. e.g.text-glow-blue-500

- More coming soon in sha Allah...
Getting started
Install the npm library
npm i -D twglowOr, if you are using yarn:
yarn add -D twglowThen add the plugin to your tailwind.config.js file:
import twGlow from "twglow";
export default {
// ...
plugins: [twGlow],
};Or if you use common JS, then:
module.exports = {
theme: {
// ...
},
plugins: [require("twglow")],
};Usage
Use the provided examples.
