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: [], +};