| 12345678910111213141516171819202122232425262728293031323334353637 |
- /** @type {import('tailwindcss').Config} */
- module.exports = {
- content: ['./src/**/*.{tsx,css}'],
- corePlugins: {
- preflight: false
- },
- 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: []
- };
|