forked from flotiq/flotiq-nextjs-blog-1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
34 lines (34 loc) · 969 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
34
module.exports = {
content: [
'./node_modules/flotiq-components-react/dist/**/*.{js,jsx,ts,tsx}',
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}',
],
theme: {
extend: {
screens: {
sm: '480px',
md: '768px',
lg: '976px',
xl: '1440px',
},
colors: {
primary: '#64FBC1',
secondary: '#0083FC',
'light-gray': '#F9F9F9',
'olive-green': '#C6FB55',
dark: '#000000',
},
fontFamily: {
sora: ['Sora', 'sans-serif'],
},
},
},
plugins: [
require('@tailwindcss/typography'),
require('@tailwindcss/line-clamp'),
],
presets: [
require('./node_modules/flotiq-components-react/dist/tailwind.preset'), // Flotiq Component theme presets
],
};