From 157ff12f500185007ceb6eaa1c387c99462d48a2 Mon Sep 17 00:00:00 2001 From: April Hall Date: Sat, 4 Jan 2025 23:19:39 -0500 Subject: [PATCH] feat: Add color to "SvelteKit" --- src/routes/+page.svelte | 2 +- tailwind.config.ts | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/src/routes/+page.svelte b/src/routes/+page.svelte index 6d24463..c81c665 100644 --- a/src/routes/+page.svelte +++ b/src/routes/+page.svelte @@ -42,7 +42,7 @@
-

# SvelteKit with Socket.IO Integration

+

SvelteKit with Socket.IO Integration

diff --git a/tailwind.config.ts b/tailwind.config.ts index 812c5a2..075299a 100644 --- a/tailwind.config.ts +++ b/tailwind.config.ts @@ -4,4 +4,9 @@ import daisyui from 'daisyui'; export default { content: ['./src/**/*.{html,js,svelte,ts}'], plugins: [daisyui], + theme: { + colors: { + 'svelte': '#FF3E00' + } + } } satisfies Config;