Files

22 lines
455 B
TypeScript
Raw Permalink Normal View History

2023-09-09 17:11:02 -05:00
import type { Config } from 'tailwindcss';
2023-09-09 17:02:12 -05:00
const config: Config = {
2023-09-09 21:39:08 -05:00
darkMode: 'class',
2023-09-09 17:02:12 -05:00
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: {
2023-09-09 21:39:08 -05:00
'primary-gray': '#24272d',
'secondary-gray': '#2f333a',
2023-09-09 20:10:35 -05:00
'primary-accent': '#3743e5',
},
},
2023-09-09 17:02:12 -05:00
},
plugins: [],
2023-09-09 17:11:02 -05:00
};
export default config;