extend colours

This commit is contained in:
Robert 2024-03-06 17:41:47 +07:00
parent cd33274cfe
commit d9b359da8d
No known key found for this signature in database
GPG Key ID: F631C7FD957D5F22

View File

@ -1,4 +1,13 @@
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx,mdx}"],
theme: {
extend: {
colors: {
"bg-color": "#282A40",
neutral: "#9B99B0",
primary: "#676CF6",
},
},
},
};