gradient-css-generator

1.0.1 • Public • Published

gradient-css-generator

A package that helps generate CSS gradients.

Installation

Install the package using npm:

npm install gradient-css-generator

Usage

const generateGradient = require('gradient-css-generator');

const cssGradient = generateGradient('#ff0000', '#00ff00', 'to right');
console.log(cssGradient);

The generateGradient function takes three parameters:

startColor: The starting color of the gradient in hex format. endColor: The ending color of the gradient in hex format. direction: The direction of the gradient (e.g., 'to top', 'to bottom', 'to left', 'to right'). The default is 'to bottom'.

The function returns a CSS gradient string that you can use in your stylesheets.

Dependencies (1)

Dev Dependencies (0)

    Package Sidebar

    Install

    npm i gradient-css-generator

    Weekly Downloads

    1

    Version

    1.0.1

    License

    MIT

    Unpacked Size

    3.96 kB

    Total Files

    5

    Last publish

    Collaborators

    • brandonhimpfen