-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtailwind.config.js
67 lines (67 loc) · 1.77 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: "class",
content: [
"./app/**/*.{js,ts,jsx,tsx}",
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
fontFamily: {
nunito: ["var(--font-nunito)"],
poppins: ["var(--font-poppins)"],
},
colors: {
primaryColor: '#7856FF',
primaryDarkColor: '#101112',
secondaryColor: '#59507D',
secondaryDarkColor: '#1B1E1F',
primaryHoverColor: '#B4A2FD',
primaryDarkHoverColor: '#3F4448',
modalDarkColor: '#2A2634',
filters: '#EFF3F4',
search: '#E9E9E9',
facebook: '#3b5998',
whatsapp: '#25D366',
twitter: '#1DA1F2',
telegram: '#0088cc'
},
width: {
'post': '42rem',
'post-xl': '38rem',
'post-lg': '32rem',
'post-sm': '18rem',
'search': '45rem',
'search-lg': '36rem',
'search-md': '30rem',
'search-sm': '15rem',
'post-modal': '33.75rem',
'input-lg': '28rem',
'input-md': '20rem',
'input-2sm': '16rem',
'input-sm': '13.5rem',
'input-xs': '9.5rem',
'input-xxs': '7.5rem'
},
height: {
'post': '16rem',
'post-xl': '14rem',
'post-lg': '12rem',
'post-sm': '11rem',
'input': '2.25rem',
'post-modal': '42rem',
'textarea': '5rem'
},
boxShadow: {
'primary': '0px 5px 15px rgba(0, 0, 0, 0.2)',
'purple': '0px 5px 15px rgba(120, 86, 255, 0.35)',
'secondary': '0px 5px 5px rgba(0, 0, 0, 0.2)',
'dark-secondary': '0px 0px 15px rgba(255, 255, 255, 0.2)'
}
}
},
plugins: [
require('@tailwindcss/line-clamp'),
],
}