Git Product home page Git Product logo

tailwindcss-bggradient's Introduction

TailwindCSS gradients

TailwindCSS plugin that allows using degrees in CSS gradients

gradient example with TailwindCSS classes

Installation

Install the plugin

Npm:

npm install tailwindcss-gradient

Yarn:

yarn add tailwindcss-gradient

Pnpm:

pnpm add tailwindcss-gradient

Bun:

bun add tailwindcss-gradient

Add plugin to your tailwind.config.js plugins

// tailwind.config.js

module.exports = {
    plugins: [
        require('tailwindcss-gradient'),
    ],
}

Usage

Use it as bg-gradient-{degrees} utility to specify linear gradient angle

<div class="h-40 from-red-500 to-blue-500 bg-gradient-90">
    90 deg gradient direction
</div> 

List of available default utilities:

  • bg-gradient-0
  • bg-gradient-10
  • bg-gradient-15
  • bg-gradient-20
  • bg-gradient-25
  • bg-gradient-30
  • bg-gradient-45
  • bg-gradient-60
  • bg-gradient-90
  • bg-gradient-120
  • bg-gradient-135
  • bg-gradient-180

Each will generate CSS like background-image: linear-gradient($value, var(--tw-gradient-stops))

Alias

Since v1.1.0 every utility available under bg-gradient-to alias, e.g. bg-gradient-to-45 is same as bg-gradient-45 - it just make more sense as it points direction

Configuration

// tailwind.config.js
module.exports = {
    theme: {
        extend: {
            bgGradientDeg: {
                75: '75deg',
            }
        }
    },
}

Example

<div class="h-40 from-red-500 via-yellow-500 to-blue-500 bg-gradient-90">
    90 deg from defaults
</div> 

<div class="h-40 from-red-500 via-yellow-500 to-blue-500 bg-gradient-10 sm:bg-gradient-60">
    10 deg on mobile,
    60 on desktops
</div> 

<div class="h-40 from-red-500 via-yellow-500 to-blue-500 bg-gradient-[137deg] sm:bg-gradient-to-br">
    137 deg from JIT on mobile,
    to bottom right on desktop
</div> 

<div class="h-40 from-red-500 via-yellow-500 to-blue-500 bg-gradient-75">
    75 deg from user's custom config
</div>

gradient example with TailwindCSS classes

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.