2023-09-09 17:11:02 -05:00
|
|
|
import type { Config } from 'tailwindcss';
|
2023-09-09 17:02:12 -05:00
|
|
|
|
|
|
|
|
const config: Config = {
|
|
|
|
|
content: [
|
|
|
|
|
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
|
|
|
|
|
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
|
|
|
|
|
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
|
|
|
|
|
],
|
|
|
|
|
theme: {
|
2023-09-09 20:10:35 -05:00
|
|
|
extend: {
|
|
|
|
|
colors: {
|
|
|
|
|
'primary-accent': '#3743e5',
|
|
|
|
|
},
|
|
|
|
|
},
|
2023-09-09 17:02:12 -05:00
|
|
|
},
|
|
|
|
|
plugins: [],
|
2023-09-09 17:11:02 -05:00
|
|
|
};
|
|
|
|
|
export default config;
|