rekan_ai/tailwind.config.js

19 lines
385 B
JavaScript
Raw Normal View History

2025-01-20 09:20:53 +07:00
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
customBlue: '#5B59E8',
customWhite: '#FFFFFF',
customBlack: '#212121',
customRed: '#DC0168',
2025-01-20 15:02:01 +07:00
customGrey: 'rgba(212, 218, 228, 0.12)'
2025-02-07 17:06:16 +07:00
},
2025-01-20 09:20:53 +07:00
},
},
plugins: [],
};