From 35e3c803135c717038899fa62c907bc1aa34e2bd Mon Sep 17 00:00:00 2001 From: Caleb <57644769+alliraine@users.noreply.github.com> Date: Thu, 15 May 2025 21:56:07 -0400 Subject: [PATCH] Add RayHunter branding colors to TailwindCSS --- bin/web/tailwind.config.ts | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/bin/web/tailwind.config.ts b/bin/web/tailwind.config.ts index d50a5e5..5948176 100644 --- a/bin/web/tailwind.config.ts +++ b/bin/web/tailwind.config.ts @@ -4,7 +4,13 @@ export default { content: ['./src/**/*.{html,js,svelte,ts}'], theme: { - extend: {} + extend: { + colors: { + 'rayhunter-blue': '#4e4eb1', + 'rayhunter-dark-blue': '#3f3da0', + 'rayhunter-green': '#94ea18' + } + } }, plugins: []