From f3269d0beee77df5306e230687af3a1eb5f2f89e Mon Sep 17 00:00:00 2001 From: Starystars67 Date: Sat, 20 Dec 2025 02:34:26 +0000 Subject: [PATCH] minor clean up and attempt to fix coloring --- src/views/Home.vue | 2 +- tailwind.config.js | 24 ++++++------------------ 2 files changed, 7 insertions(+), 19 deletions(-) diff --git a/src/views/Home.vue b/src/views/Home.vue index de4d9ab..bb6415d 100644 --- a/src/views/Home.vue +++ b/src/views/Home.vue @@ -221,7 +221,7 @@ const faqs = [ >

{{ feature.title }}

{{ feature.description }}

diff --git a/tailwind.config.js b/tailwind.config.js index be1cb6b..2c6c153 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -5,24 +5,12 @@ export default { theme: { extend: { colors: { - 'beammp-orange': { - DEFAULT: '#F36D24', // Base color - }, - 'beammp-white': { - DEFAULT: '#FFFFFF', // Base color - }, - 'beammp-black': { - DEFAULT: '#000000', // Base color - }, - 'beammp-gray': { - DEFAULT: '#333333', // Base color - }, - 'beammp-green': { - DEFAULT: '#1D9749', // Base color - }, - 'beammp-blue': { - DEFAULT: '#4470B6', // Base color - }, + 'beammp-orange': '#F36D24', + 'beammp-white': '#FFFFFF', + 'beammp-black': '#000000', + 'beammp-gray': '#333333', + 'beammp-green': '#1D9749', + 'beammp-blue': '#4470B6', }, }, },