From 6501607bb4c02bd9861f552c8b8e8f3086c121db Mon Sep 17 00:00:00 2001 From: chark1es Date: Sat, 21 Dec 2024 02:44:03 -0800 Subject: [PATCH] add nav colors --- tailwind.config.mjs | 29 +++++++++++++++++++---------- 1 file changed, 19 insertions(+), 10 deletions(-) diff --git a/tailwind.config.mjs b/tailwind.config.mjs index 586b391..6afaecf 100644 --- a/tailwind.config.mjs +++ b/tailwind.config.mjs @@ -1,14 +1,23 @@ /** @type {import('tailwindcss').Config} */ export default { - 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", - }, - }, + content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"], + theme: { + extend: { + colors: { + ieee_online_store_bg: "#f3c135", + ieee_blue: "#00629b", + + nav_bg: "#090d19", + nav_text: "#eaf7ff", + + bg_primary: "#0a0e1b", + top_gradient: "#1c284e", + }, + backgroundImage: { + "gradient-radial": + "radial-gradient(circle at 0% 0%, var(--tw-gradient-stops))", + }, }, - plugins: [], + }, + plugins: [], };