From 937fd33cee7faab0c5c96d49410c69d9ca2025f9 Mon Sep 17 00:00:00 2001 From: Drew Rautenberg Date: Sun, 12 Jan 2025 15:29:41 -0600 Subject: [PATCH] Update theme to use brand color instead of hardcoded red --- barkmanui/src/pages/home.tsx | 4 ++-- barkmanui/src/pages/inventory.tsx | 4 ++-- barkmanui/tailwind.config.js | 6 +++++- 3 files changed, 9 insertions(+), 5 deletions(-) diff --git a/barkmanui/src/pages/home.tsx b/barkmanui/src/pages/home.tsx index 02a3068..d5ed448 100644 --- a/barkmanui/src/pages/home.tsx +++ b/barkmanui/src/pages/home.tsx @@ -7,13 +7,13 @@ function Home() { return ( <>
-

Home

+

Home

ARFF ARFF BARK BARK

- + diff --git a/barkmanui/src/pages/inventory.tsx b/barkmanui/src/pages/inventory.tsx index a80e81f..639c031 100644 --- a/barkmanui/src/pages/inventory.tsx +++ b/barkmanui/src/pages/inventory.tsx @@ -7,13 +7,13 @@ function Inventory() { return ( <>
-

Inventory

+

Inventory

ARFF ARFF BARK BARK

- + diff --git a/barkmanui/tailwind.config.js b/barkmanui/tailwind.config.js index df321fe..fc1f49c 100644 --- a/barkmanui/tailwind.config.js +++ b/barkmanui/tailwind.config.js @@ -2,7 +2,11 @@ export default { content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"], theme: { - extend: {}, + extend: { + colors: { + brand: "#D40404", + }, + }, }, plugins: [], }