mirror of
https://github.com/cssgunc/compass.git
synced 2025-04-10 06:10:17 -04:00
27 lines
690 B
TypeScript
27 lines
690 B
TypeScript
import type { Config } from 'tailwindcss';
|
|
|
|
const config: Config = {
|
|
content: [
|
|
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
|
|
'./components/**/*.{js,ts,jsx,tsx,mdx}',
|
|
'./app/**/*.{js,ts,jsx,tsx,mdx}',
|
|
],
|
|
theme: {
|
|
extend: {
|
|
backgroundImage: {
|
|
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
|
|
'gradient-conic': 'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))',
|
|
},
|
|
fontFamily: {
|
|
'sans': ['Inter', 'sans-serif'], // Add 'Inter' to the fontFamily theme
|
|
},
|
|
fontWeight: {
|
|
'medium': 500, // Ensure medium is correctly set to 500
|
|
}
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|
|
|
|
export default config;
|