-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtailwind.config.js
42 lines (41 loc) · 957 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
35
36
37
38
39
40
41
42
const defaultTheme = require('tailwindcss/defaultTheme');
module.exports = {
mode: 'jit',
purge: [
'./pages/**/*.{js,ts,jsx,tsx}',
'./utils/**/*.{js,ts,jsx,tsx}',
'./layouts/**/*.{js,ts,jsx,tsx}',
'./sections/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}',
],
darkMode: false, // or 'media' or 'class'
theme: {
container: {
center: true,
},
extend: {
fontFamily: {
sans: ['Poppins', ...defaultTheme.fontFamily.sans],
},
colors: {
'color-1': '#F5F7FF',
'color-2': '#0074BE',
'color-3': '#0156FF',
'color-4': '#01A4FF',
'color-5': '#8C8C8C',
'color-6': '#CCCCCC',
'color-7': '#EBEBEB',
'color-9': '#C94D3F',
'color-10': '#78A962',
'color-11': '#666666'
}
}
},
variants: {
extend: {},
},
plugins: [
require('daisyui'),
require('@tailwindcss/line-clamp'),
],
}