mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-04-30 19:36:25 +02:00
19 lines
566 B
TypeScript
19 lines
566 B
TypeScript
export const OVERLAY_GRADIENT = `linear-gradient(
|
|
to bottom,
|
|
hsl(0, 0%, 0%) 0%,
|
|
hsla(0, 0%, 0%, 0.987) 8.3%,
|
|
hsla(0, 0%, 0%, 0.951) 16.6%,
|
|
hsla(0, 0%, 0%, 0.896) 24.6%,
|
|
hsla(0, 0%, 0%, 0.825) 32.5%,
|
|
hsla(0, 0%, 0%, 0.741) 40.1%,
|
|
hsla(0, 0%, 0%, 0.648) 47.6%,
|
|
hsla(0, 0%, 0%, 0.55) 54.8%,
|
|
hsla(0, 0%, 0%, 0.45) 61.7%,
|
|
hsla(0, 0%, 0%, 0.352) 68.3%,
|
|
hsla(0, 0%, 0%, 0.259) 74.5%,
|
|
hsla(0, 0%, 0%, 0.175) 80.4%,
|
|
hsla(0, 0%, 0%, 0.104) 86%,
|
|
hsla(0, 0%, 0%, 0.049) 91.1%,
|
|
hsla(0, 0%, 0%, 0.013) 95.8%,
|
|
hsla(0, 0%, 0%, 0) 100%
|
|
)` as const;
|