jebcolors
Version:
npm module that contains colors, gradients and a class used to modify the colors or gradients
40 lines (34 loc) • 1.05 kB
text/typescript
// In this module I save arrays of colors getted of grabient (used in gradients)
// src = https://www.grabient.com/
// Final arrays
const sweetOrange = ["#fbab7e","#f7ce68"]
const sweetGreen = ["#85ffbd","#fffb7d"]
const sweetBlue = ["#8bc6ec","#9599e2"]
const sweetPink = ["#fbda61","#ff5acd"]
const strongOrange = ["#fad961","#f76b1c"]
const strongGreen = ["#f4d03f","#16a085"]
const strongBlue = ["#21d4fd","#b721ff"]
const strongPink = ["#ff9a8b","#ff6a88","#ff99ac"]
const strongRed = ["#ffe53b","#ff2525"]
const strongPurple = ["#ff3cac","#784ba0","#2b86c5"]
const magicOne = ["#00dbde","#fc00ff"]
const magicTwo = ["#08aeea","#2af598"]
const magicThree = ["#fa8bff","#2bd2ff","#2bff88"]
const magicFour = ["#fee140","#fa709a"]
// Exports
export const grabientMainGradients = {
sweetOrange,
sweetGreen,
sweetBlue,
sweetPink,
strongOrange,
strongGreen,
strongBlue,
strongPink,
strongRed,
strongPurple,
magicOne,
magicTwo,
magicThree,
magicFour,
}