![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.
typescript-color-gradient
Advanced tools
typescript-color-gradient is a typescript native fork of javascript-color-gradient, a lightweight JavaScript library used to generate an array of color gradients by providing start and finish colors, as well as the required number of midpoints.
typescript-color-gradient is a typescript native fork of javascript-color-gradient, a lightweight JavaScript library used to generate an array of color gradients by providing start and finish colors, as well as the required number of midpoints.
For the original creator of the library, this is the repositoryFor Node.js: Install the typescript-color-gradient
npm module:
npm install typescript-color-gradient
Then import the module into your JavaScript:
import { generateGradient } from from "typescript-color-gradient";
Generate a random gradient
import { generateGradient } from from "typescript-color-gradient";
const gradientArray = generateGradient();
console.log(gradientArray);
// [... a gradient with 10 colors starting by generating a random color and his complementary hex string value]
Using 1 colors and default (10) midpoints to generate an array of hex color values:
import { generateGradient } from from "typescript-color-gradient";
const gradientArray = generateGradient(["#3F2CAF"]);
console.log(gradientArray);
// [... a gradient with 10 colors starting by the selected color and his complementary hex string value]
Using 2 colors and default (10) midpoints to generate an array of hex color values:
import { generateGradient } from from "typescript-color-gradient";
const gradientArray = generateGradient(["#3F2CAF", "#e9446a"]);
console.log(gradientArray);
// ["#502ea8", "#6131a1", "#72339a", "#833693", "#94388d", "#a53a86", "#b63d7f", "#c73f78", "#d84271", "#e9446a"]
Using 4 colors and 20 midpoints to generate an array of hex color values :
import { generateGradient } from from "typescript-color-gradient";
const gradientArray = generateGradient(["#3F2CAF", "#e9446a", "#edc988", "#607D8B"], 20);
console.log(gradientArray);
// ["#5930a5", "#72339a", "#8c3790", "#a53a86", "#bf3e7b", "#d84271", "#e94b6c", "#ea5f70", "#ea7375", "#eb8779", …]
It just goes from
import { Gradient } from "typescript-color-gradient";
const gradientArray = new Gradient()
.setGradient("#3F2CAF", "#e9446a", "#edc988", "#607D8B")
.setNumberOfColors(20)
.getColors();
console.log(gradientArray);
to
import { generateGradient } from from "typescript-color-gradient";
const gradientArray = generateGradient(["#3F2CAF", "#e9446a", "#edc988", "#607D8B"], 20);
console.log(gradientArray);
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.
typescript-color-gradient
is MIT licensed.
Again thanks to Adrinlol for his work and letting me fork his job. If anyone wants to contribute with a donation, i kindly ask to send it to The original creator
FAQs
typescript-color-gradient is a typescript native fork of javascript-color-gradient, a lightweight JavaScript library used to generate an array of color gradients by providing start and finish colors, as well as the required number of midpoints.
The npm package typescript-color-gradient receives a total of 204 weekly downloads. As such, typescript-color-gradient popularity was classified as not popular.
We found that typescript-color-gradient demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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.