-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
44 lines (39 loc) · 1.07 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
/* eslint-env node */
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
theme: {
colors: {
// Primary
'cyan': 'hsl(180, 66%, 49%)',
'dark-violet': 'hsl(257, 27%, 26%)',
'white': 'hsl(0, 100%, 100%)',
// Secondary
'red': 'hsl(0, 87%, 67%)',
// Neutral
'gray': 'hsl(0, 0%, 75%)',
'grayish-violet': 'hsl(257, 7%, 63%)',
'very-dark-blue': 'hsl(255, 11%, 22%)',
'very-dark-violet': 'hsl(260, 8%, 14%)',
'light-violet': '#544a6d'
},
fontFamily: {
poppins: ['Poppins', 'sans-serif']
},
extend: {
backgroundImage: {
'shorten-mobile': 'url("./images/bg-shorten-mobile.svg")',
'boost-mobile': 'url("./images/bg-boost-mobile.svg")',
'shorten-desktop': 'url("./images/bg-shorten-desktop.svg")',
'boost-desktop': 'url("./images/bg-boost-desktop.svg")'
},
screens: {
'2xl': '1440px'
},
maxWidth: {
'6xl': '1110px'
}
}
},
plugins: []
}