summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAriel Costas Guerrero <ariel@costas.dev>2025-06-07 17:45:09 +0200
committerAriel Costas Guerrero <ariel@costas.dev>2025-06-07 17:45:09 +0200
commitc844e55e935809c9e28ce6d92d58b3f383a15631 (patch)
treeb94e6290f29d97cd95fe86012e863c093ea62fe4
parent896571d83834cacdca6eb2ae066e561bf6331cf1 (diff)
Improve background gradient
-rw-r--r--src/layouts/Layout.astro3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro
index b546904..d23d212 100644
--- a/src/layouts/Layout.astro
+++ b/src/layouts/Layout.astro
@@ -112,7 +112,8 @@ const { title, description, empty } = Astro.props;
background: linear-gradient(
to bottom,
#ffffff 0%,
- color.adjust($background, $lightness: -5%) 3rem,
+ color.adjust($background, $lightness: -2%) 6rem,
+ color.adjust($background, $lightness: -5%) 12rem,
color.adjust($background, $lightness: -5%) 88%,
color.adjust($backgroundDarker, $lightness: -5%) 100%
);