Security News
require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
gradient-svg
Advanced tools
This module creates svg gradient output for gradient.js modules.
gradient.js is a javascript module that takes your source colors array and configuration object, and returns a gradient suitable for your needs.
const svg = new Svg()
const gradient = svg.get([
[100, 34, 230, 0.5],
[10, 33, 20, 0.6],
[1, 12, 12, 0.3]
],{
base: {
interpolation: 'linear',
mode: 'rgb',
samples: 40,
lightnessCorrection: true
},
svg: {
type: 'radial',
cx: 0.5,
cy: 0.5,
r: 0.3,
spreadMethod: 'reflect'
}
},
/* third parameter - raw - is by default set to false, so it returns the svg gradient element.
Set to true if you want to get an object. */
)
{
type: 'linear' | 'radial'
id: sting // gradient's unique identifier
angle?: number // between 0 and 359
x1?: number // linear gradient's first point's position on the x axis
y1?: number // linear gradient's first point's position on the y axis
x2? number // linear gradient's second point's position on the x axis
y2?: number // linear gradient's second point's position on the y axis
cx?: number // radial gradient's center point position on the x axis
cy?: number // radial gradient's center point position on the y axis
r?: number // radial gradient's radius
fx?: number // radial gradient's focal point position on the x axis
fy?: number // radial gradient's focal point position on the y axis
spreadMethod?: 'pad' | 'repeat' | 'reflect'
gradientUnits?: 'objectBoundingBox' | 'userSpaceOnUse'
}
FAQs
Svg module of the gradient.js library
The npm package gradient-svg receives a total of 3 weekly downloads. As such, gradient-svg popularity was classified as not popular.
We found that gradient-svg 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
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.