Socket
Book a DemoInstallSign in
Socket

tailwindcss-glowing

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tailwindcss-glowing

A plugin for Tailwind CSS v3.0+ that provides utilities for glow.

latest
Source
npmnpm
Version
0.1.0
Version published
Maintainers
1
Created
Source

Tailwind CSS Glowing

A plugin for Tailwind CSS v3.0+ that provides utilities for glow.

Installation

Install the plugin from npm or yarn:

npm i -D tailwindcss-glowing
# or yarn
yarn add -D tailwindcss-glowing

Then add the plugin to your tailwind.config.js file:

/** @type {import('tailwindcss').Config} */
module.exports = {
  theme: {
    // ...
  },
  plugins: [
    require('tailwindcss-glowing'),
    // ...
  ],
}

Basic usage

Now you can add the glow class to any vanilla HTML:

<div class="glow glow-sky-500"></div>

Use the glow-sm, glow, glow-md, glow-lg, glow-xl, or glow-2xl utilities to apply different sized outer grow to an element:

<div class="glow-md ..."></div>
<div class="glow-lg ..."></div>
<div class="glow-xl ..."></div>
<div class="glow-2xl ..."></div>

License

Under the MIT LICENSE

FAQs

Package last updated on 16 May 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts