From 76ea464922e8bdf0b2bcb4ab632b2ce28398d5a0 Mon Sep 17 00:00:00 2001 From: chark1es Date: Wed, 4 Dec 2024 07:37:56 -0800 Subject: [PATCH] add ieee colors --- tailwind.config.mjs | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/tailwind.config.mjs b/tailwind.config.mjs index 19f0614..586b391 100644 --- a/tailwind.config.mjs +++ b/tailwind.config.mjs @@ -1,8 +1,14 @@ /** @type {import('tailwindcss').Config} */ export default { - content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'], - theme: { - extend: {}, - }, - plugins: [], -} + content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"], + theme: { + extend: { + colors: { + ieee_navigation_bg: "#090d18", + ieee_online_store_bg: "#f3c135", + ieee_blue: "#00629b", + }, + }, + }, + plugins: [], +};