-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
44 lines (41 loc) · 996 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
43
44
module.exports = {
content: ['./index.html', './src/**/*.{vue,js}'],
theme: {
extend: {
colors: {
primary: {
cyan: '#2acfcf',
dark: {
violet: '#3b3054',
},
},
secondary: '#f46262',
neutral: {
gray: '#bfbfbf',
grayish: {
violet: '#9e9aa7',
},
very: {
dark: {
blue: '#35323e',
violet: '#222126',
},
},
},
},
fontFamily: {
poppins: ['Poppins', 'sans-serif'],
},
fontSize: {
themeSize: '18px',
},
backgroundImage: {
'shorten-desktop': "url('./src/assets/bg-shorten-desktop.svg')",
'shorten-mobile': "url('./src/assets/bg-shorten-mobile.svg')",
'boost-desktop': "url('./src/assets/bg-boost-desktop.svg')",
'boost-mobile': "url('./src/assets/bg-boost-mobile.svg')",
},
},
},
plugins: [],
};