chore: change hex colors to tailwind bariables
All checks were successful
Workflow / build (pull_request) Successful in 3m29s
Workflow / publish (pull_request) Has been skipped

This commit is contained in:
Ilia Mashkov
2026-03-04 16:51:49 +03:00
parent 9c6ff3859a
commit 9b90080c57
7 changed files with 18 additions and 18 deletions

View File

@@ -13,7 +13,7 @@ interface Props {
const { text }: Props = $props();
</script>
{#if text}
<h2 class="text-3xl md:text-4xl lg:text-5xl font-['Space_Grotesk'] font-bold text-[#1a1a1a] dark:text-[#e5e5e5] tracking-tight">
<h2 class="text-3xl md:text-4xl lg:text-5xl font-['Space_Grotesk'] font-bold text-swiss-black dark:text-neutral-200 tracking-tight">
{text}
</h2>
{/if}