GPT-Researcher / frontend /nextjs /tailwind.config.ts
Shreyas094's picture
Upload 528 files
372531f verified
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: {
screens: {
sm: '640px',
md: '768px',
lg: '898px',
// xl:"1024px"
},
container: {
center: true,
},
extend: {
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
'custom-gradient':
'linear-gradient(150deg, #1B1B16 1.28%, #565646 90.75%)',
'gradient-conic':
'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))',
},
},
},
plugins: [],
};
export default config;