jan/docs/tailwind.config.ts
hiento09 f93deb6749
chore: move Jan Docs back into Jan Repo (#3790)
Co-authored-by: Hien To <tominhhien97@gmail.com>
2024-10-14 10:07:16 +07:00

36 lines
695 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: [
'Inter',
'-apple-system',
'BlinkMacSystemFont',
'Segoe UI',
'Roboto',
'Oxygen-Sans',
'Ubuntu,Cantarell',
'Helvetica',
'sans-serif',
],
serif: ['PPEditorialNew'],
},
extend: {},
},
plugins: [],
}
export default config