diff options
Diffstat (limited to 'src/partials')
| -rw-r--r-- | src/partials/Header.astro | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/src/partials/Header.astro b/src/partials/Header.astro index 5fc8010..77c8166 100644 --- a/src/partials/Header.astro +++ b/src/partials/Header.astro @@ -84,10 +84,21 @@ import t from "../i18n/es.json"; font-weight: 700; font-variation-settings: "wdth" 87.5,"wght" 700,"GRAD" 150; text-decoration: none; - color: $accent; + background: linear-gradient(135deg, #0066cc 0%, #0099ff 50%, #00ccff 100%); + -webkit-background-clip: text; + -webkit-text-fill-color: transparent; + background-clip: text; + transition: filter 0.2s ease; + + &:hover { + filter: brightness(1.1); + } .brand-accent { - color: $accentDark; + background: linear-gradient(135deg, #0052a3 0%, #0066cc 50%, #0080ff 100%); + -webkit-background-clip: text; + -webkit-text-fill-color: transparent; + background-clip: text; } } } |
