You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
651 B
TypeScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{tsx,css}'],
theme: {
fontFamily: {
sans: ['Inter', 'sans-serif'],
mono: [
'Monaco',
'ui-monospace',
'SFMono-Regular',
'Menlo',
'Consolas',
'Liberation Mono',
'Courier New',
'monospace'
]
},
container: {
center: true,
screens: {
sm: '50rem'
}
},
extend: {
colors: {
slate: {
850: 'hsl(222deg 47% 16%)'
},
primary: '#5fc3e7'
}
}
},
plugins: [require('@tailwindcss/typography')]
};