From 1fee57e6bd37c3329a6122d77c03cb9c1c081396 Mon Sep 17 00:00:00 2001 From: PetrusMaximus0 <45740112+PetrusMaximus0@users.noreply.github.com> Date: Wed, 18 Dec 2024 19:11:16 +0100 Subject: [PATCH] style: Define design colors on tailwind config. --- tailwind.config.js | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/tailwind.config.js b/tailwind.config.js index 0cbf447..49d53e0 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -2,7 +2,17 @@ export default { content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'], theme: { - extend: {}, + extend: { + colors: { + primary: "#1B2930", + neutral: "#11191D", + complementary: "#FFFFFF", + accent: "#F07828", + logoText: "#FF003B", + ctaBgA: "#F3FF50", + ctaBgB: "#F59814" + } + }, }, plugins: [], };