top-danesh / tailwind.config.js
humanvprojectceo's picture
Create tailwind.config.js
b4f154b verified
Raw
History Blame Contribute Delete
456 Bytes
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./main.tsx",
"./App.tsx"
],
theme: {
extend: {
colors: {
navy: {
800: '#1e293b',
900: '#0f172a',
},
turquoise: {
600: '#0d9488',
700: '#0f766e',
},
amberGold: {
500: '#f59e0b',
600: '#d97706',
}
}
},
},
plugins: [],
}