Skip to content
Snippets Groups Projects

Resolve "Adding basic post component"

All threads resolved!
1 file
+ 5
0
Compare changes
  • Side-by-side
  • Inline
export function generateRandomLinearGradient(colors: string[], fixedAngle: boolean): string{
const randomAngle = Math.random() * 360;
const gradient = Math.floor((Math.random() * 20) + 10);
return `linear-gradient(${fixedAngle? 117 : randomAngle}deg, ${colors[0]} ${gradient}%, ${colors[1]} ${100-gradient}%)`
}
\ No newline at end of file
Loading