feat: Add color to "SvelteKit"

This commit is contained in:
April Hall 2025-01-04 23:19:39 -05:00
parent 57ab049945
commit 157ff12f50
Signed by: arithefirst
GPG Key ID: 4508A15C4DB91C5B
2 changed files with 6 additions and 1 deletions

View File

@ -42,7 +42,7 @@
</script> </script>
<main class="absolute left-1/2 top-1/2 -translate-x-1/2 -translate-y-1/2 w-1/2 h-fit"> <main class="absolute left-1/2 top-1/2 -translate-x-1/2 -translate-y-1/2 w-1/2 h-fit">
<h1 class="text-lg"># SvelteKit with Socket.IO Integration</h1> <h1 class="text-lg"><span class="text-svelte">SvelteKit</span> with Socket.IO Integration</h1>
<form class="my-1 flex" on:submit={sendMessage}> <form class="my-1 flex" on:submit={sendMessage}>
<input type="text" placeholder="Type here" class="input input-bordered w-1/2 mr-1" bind:value={msg} /> <input type="text" placeholder="Type here" class="input input-bordered w-1/2 mr-1" bind:value={msg} />
<button class="btn w-1/2" type="submit">Send</button> <button class="btn w-1/2" type="submit">Send</button>

View File

@ -4,4 +4,9 @@ import daisyui from 'daisyui';
export default { export default {
content: ['./src/**/*.{html,js,svelte,ts}'], content: ['./src/**/*.{html,js,svelte,ts}'],
plugins: [daisyui], plugins: [daisyui],
theme: {
colors: {
'svelte': '#FF3E00'
}
}
} satisfies Config; } satisfies Config;