-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
52 lines (52 loc) · 1.19 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
module.exports = {
purge: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
darkMode: false, // or 'media' or 'class'
theme: {
container: {
center: true,
padding: '2rem'
},
extend: {
colors: {
primaryDark: '#6267DA',
secondaryDark: '#FBCD85',
secondaryLight: '#FFF3C8',
primaryLight: '#EAE8FF',
backgroundGradient: '#F5F4FF',
offWhite: '#FCFCFC',
yellowBackgroundStart: '#FFE7C2',
yellowBackgroundEnd: '#FFDDA7',
formLabel: '#A0A3BD',
socialBG: '#14142B'
},
fontFamily: {
heading: ['"Source Serif Pro"'],
body: ['"Open Sans"'],
number: ['"Inter"'],
navbar: ['"DM Sans"'],
bodyLexend: ['"Lexend Deca"'],
formText: ['"Poppins"'],
themes: ['"Barlow"']
},
width: {
iphoneWidth: '304px',
ig: '100px',
},
height: {
iphoneHeight: '660px',
ig: '100px'
}
},
},
variants: {
extend: {
opacity: ['disabled'],
cursor: ['disabled'],
text: ['disabled'],
fontWeight: ['hover', 'focus']
}
},
plugins: [
require('@tailwindcss/forms')
],
}