-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
35 lines (35 loc) · 1.09 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}',
'./src/**/*.{js,jsx,ts,tsx}',
],
theme: {
extend: {
colors: {
primary: '#000000',
secondary: '#41624B',
red: '#FF0000',
gray: '#9fa09c',
'light-gray': '#F4F4F4',
'green-gray': '#E8E9E3',
},
fontFamily: {
roboto: ['Roboto', 'sans-serif'],
sora: ['Sora', 'sans-serif'],
inter: ['Inter', 'sans-serif'],
grotesque: ['Darker Grotesque', 'sans-serif'],
},
minHeight: {
'1/2vh': '50vh',
},
},
},
presets: [
require('./node_modules/flotiq-components-react/dist/tailwind.preset'), // Flotiq Component theme presets
],
plugins: [
require('@tailwindcss/forms'),
require('@tailwindcss/line-clamp'),
],
safelist: require('./node_modules/flotiq-components-react/dist/tailwind.safelist'),
};