UNPKG

react-garden

Version:

React + TypeScript + ThreeJS app using Material UI on NextJS, Apollo Client, GraphQL + WordPress REST APIs, for ThreeD web development.. a part of the threed.ai code family.

14 lines (11 loc) 305 B
/** The linearGradient() function helps you to create a linear gradient color background */ function linearGradient( color: string, colorState: string, angle: number = 195 ): string { return `linear-gradient(${angle}deg, ${color}, ${colorState})` } export default linearGradient