adjust gradient

This commit is contained in:
2025-04-02 16:57:49 +05:00
parent a6897ccf15
commit 903e2c150a

View File

@ -4,15 +4,13 @@ html {
body {
background: radial-gradient(
50% 50% /* The size of the gradient: 50% wide, 50% tall */
at 50% 65%, /* Position of the center point: centered horizontally and 65% down */
rgba(142, 154, 236, 0.4) 0%, /* Starting color: blue-purple at 40% opacity, begins at center */
rgba(142, 154, 236, 0) 100% /* Ending color: same blue-purple but fully transparent, ends at edge */
circle at right 15%, /* Position circle at right edge, 65% down */
rgba(142, 154, 236, 0.4) 0%, /* Starting color at center */
rgba(142, 154, 236, 0) 25% /* Ending color at 50% distance */
),
radial-gradient(
50% 50% /* The size of the gradient: 50% wide, 50% tall */
at 50% 85%, /* Position of the center point: centered horizontally and 85% down */
rgba(142, 154, 236, 0.4) 0%, /* Starting color: blue-purple at 40% opacity, begins at center */
rgba(142, 154, 236, 0) 100% /* Ending color: same blue-purple but fully transparent, ends at edge */
circle at left 85%, /* Position circle at left edge, 85% down */
rgba(142, 154, 236, 0.4) 0%, /* Starting color at center */
rgba(142, 154, 236, 0) 25% /* Ending color at 50% distance */
);
}