47 lines
934 B
TypeScript
47 lines
934 B
TypeScript
import type { Config } from 'tailwindcss'
|
|
|
|
const config: Config = {
|
|
darkMode: 'selector',
|
|
|
|
content: [
|
|
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
|
|
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
|
|
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
|
|
'./theme.config.tsx',
|
|
],
|
|
theme: {
|
|
container: {
|
|
center: true,
|
|
padding: '16px',
|
|
},
|
|
fontFamily: {
|
|
sans: [
|
|
'StudioFeixenSans',
|
|
'-apple-system',
|
|
'BlinkMacSystemFont',
|
|
'Segoe UI',
|
|
'Roboto',
|
|
'Oxygen-Sans',
|
|
'Ubuntu,Cantarell',
|
|
'Helvetica',
|
|
'sans-serif',
|
|
],
|
|
inter: [
|
|
'Inter',
|
|
'-apple-system',
|
|
'BlinkMacSystemFont',
|
|
'Segoe UI',
|
|
'Roboto',
|
|
'Oxygen-Sans',
|
|
'Ubuntu,Cantarell',
|
|
'Helvetica',
|
|
'sans-serif',
|
|
],
|
|
serif: ['PPEditorialNew'],
|
|
},
|
|
extend: {},
|
|
},
|
|
plugins: [],
|
|
}
|
|
export default config
|