From ae0f2e2c1b38decdcfe4f9f509a35a9335cdd626 Mon Sep 17 00:00:00 2001 From: vishwaikon Date: Thu, 1 Feb 2024 00:00:04 +0530 Subject: [PATCH] Two custom color classes were added which were used for headings to facilitate using same color code throughout the website, dark moderate blue: darkmod-blue #3dd17C and desaturated blue: desat-blue #6D7893 --- tailwind.config.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tailwind.config.js b/tailwind.config.js index 6dc25b66..e3b31051 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -4,6 +4,8 @@ export const theme = { extend: { colors: { 'primary-blue': '#1677FF', + 'darkmod-blue': '#3D317C', + 'desatdark-blue':'#6D7893', }, }, };