mirror of
https://github.com/aljazceru/sendstr-web.git
synced 2025-12-17 22:44:28 +01:00
19 lines
404 B
JavaScript
19 lines
404 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
"./src/pages/**/*.{js,ts,jsx,tsx}",
|
|
"./src/components/**/*.{js,ts,jsx,tsx}",
|
|
"./src/views/**/*.{js,ts,jsx,tsx}",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
'custom-green-light': '#6b9370',
|
|
'custom-green-dark': '#4D6A51',
|
|
'custom-black': '#3C3744'
|
|
}
|
|
}
|
|
},
|
|
plugins: [],
|
|
}
|