-
+
Stay up to date with the roadmap progress, announcements and
exclusive discounts feel free to sign up with your email.
diff --git a/Technodes/tailwind.config.js b/Technodes/tailwind.config.js
index 614c86b..90fb734 100644
--- a/Technodes/tailwind.config.js
+++ b/Technodes/tailwind.config.js
@@ -2,7 +2,17 @@
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
- extend: {},
+ backgroundColor: theme => ({
+ ...theme('colors'),
+ 'primary': '#090580',
+ 'secondary': '#46458C'
+ }),
+ extend: {
+ colors: {
+ 'textcolor': '#F4D3D3',
+ 'textdark': '#E8A9A9'
+ }
+ }
},
plugins: [],
};