![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
gradient-now
Advanced tools
gradient-now is a command-line tool that generates a gradient of colors based on the input provided. You can specify any number of colors in hexadecimal format or color names, followed by a number indicating the steps in the gradient.
gradient-now is a command-line tool that generates a gradient of colors based on the input provided. You can specify any number of colors in hexadecimal format or color names, followed by a number indicating the steps in the gradient.
To install gradient-now, use the following npm command:
$ npm install -g gradient-now
$ gradient-now color1 color2 ... colorN steps
You can also add --list
to the end of the command to return an array of string values instead.
$ gradient-now red blue 8
Will return eight hexadecimals colors starting the gradient at red and ending at blue:
#ff0000 #db0024 #b60049 #92006d #6d0092 #4900b6 #2400db #0000ff
$ gradient-now aquamarine #912798 #abd778 12 --list
Will return an array of hexadecimal string values:
[
'#7fffd4', '#82d8c9', '#86b0be', '#8989b3', '#8c62a8', '#8f3b9d',
'#933795', '#98578f', '#9d7789', '#a29784', '#a6b77e', '#abd778'
]
In both cases, the tool will output a set of colors representing the requested gradient.
This of course also makes gradient-now a convenient tool to quickly return an average of two colors.
$ gradient-now yellow red 3
Will return three colors where the average color will be the second one:
#ffff00 #ff8000 #ff0000
This project is licensed under the MIT License - see the LICENSE file for details.
FAQs
gradient-now is a command-line tool that generates a gradient of colors based on the input provided. You can specify any number of colors in hexadecimal format or color names, followed by a number indicating the steps in the gradient.
The npm package gradient-now receives a total of 3 weekly downloads. As such, gradient-now popularity was classified as not popular.
We found that gradient-now demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.