Prettier added and remake identation os project

This commit is contained in:
2026-03-23 20:21:37 -03:00
parent 19a1c76be1
commit 946e7b51fe
11 changed files with 769 additions and 569 deletions
+10 -14
View File
@@ -1,21 +1,17 @@
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
colors: {
'rwanda-blue': '#20603d',
'rwanda-yellow': '#fad201',
'canada-red': '#d52b1e',
'primary': '#20603d',
'secondary': '#d52b1e',
'accent': '#fad201',
}
}
"rwanda-blue": "#20603d",
"rwanda-yellow": "#fad201",
"canada-red": "#d52b1e",
primary: "#20603d",
secondary: "#d52b1e",
accent: "#fad201",
},
},
},
plugins: [],
}
};