-
Notifications
You must be signed in to change notification settings - Fork 4
/
tailwind.config.js
33 lines (32 loc) · 1004 Bytes
/
tailwind.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
import pluginAspectRatio from '@tailwindcss/aspect-ratio'
import pluginForms from '@tailwindcss/forms'
import pluginTypography from '@tailwindcss/typography'
import pluginDebugBreakpoints from 'tailwind-debug-breakpoints'
import colors from 'tailwindcss/colors'
import { fontFamily } from 'tailwindcss/defaultTheme'
/** @type {import('tailwindcss').Config} */
export default {
content: ['src/**/*!(*.stories|*.spec).{ts,tsx}'],
darkMode: 'media',
theme: {
extend: {
fontFamily: {
sans: ['Inter', ...fontFamily.sans],
mono: ['var(--jetbrains-mono-font)', ...fontFamily.mono],
},
colors: {
black: '#121314',
gray: colors.gray,
primary: colors.blue,
secondary: colors.indigo,
},
},
debugScreens: {
position: ['bottom', 'right'],
borderTopLeftRadius: '4px',
printSize: false,
prefix: '',
},
},
plugins: [pluginForms(), pluginTypography(), pluginAspectRatio, pluginDebugBreakpoints],
}