generated from flotiq/nextjs-starter-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 3
/
tailwind.config.js
35 lines (35 loc) · 1.03 KB
/
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
34
35
module.exports = {
content: [
'./node_modules/flotiq-components-react/dist/**/*.{js,jsx,ts,tsx}',
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}',
'./layout/**/*.{js,ts,jsx,tsx}',
'./sections/**/*.{js,ts,jsx,tsx}',
],
theme: {
extend: {
screens: {
sm: '480px',
md: '768px',
lg: '976px',
xl: '1440px',
},
colors: {
primary: '#0083FC',
gray: '#e7e7e7',
'light-gray': '#F9F9F9',
},
fontFamily: {
lato: ['Lato', 'sans-serif'],
},
},
},
plugins: [
require('@tailwindcss/typography'),
require('@tailwindcss/forms'),
],
presets: [
require('./node_modules/flotiq-components-react/dist/tailwind.preset'), // Flotiq Component theme presets
],
safelist: require('./node_modules/flotiq-components-react/dist/tailwind.safelist'),
}