Files
danak-console/tailwind.config.js
T
hamid zarghami 50df161858 home page
2024-12-28 12:32:45 +03:30

23 lines
432 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
primary: 'black',
secondary: '#F4F5F9',
border: '#D0D0D0',
description: '#888888',
header: "#C3C7DD",
success: "#00BA4B"
},
borderRadius: {
'2.5': '10px'
}
},
},
plugins: [],
}