-
Notifications
You must be signed in to change notification settings - Fork 2
/
tailwind.config.js
53 lines (49 loc) · 1.1 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./pages/**/*.{ts,tsx,js,jsx}',
'./components/**/*.{ts,tsx,js,jsx}',
'./app/**/*.{ts,tsx,js,jsx,}',
'./src/**/*.{ts,tsx,js,jsx}',
],
theme: {
container: {
center: true,
padding: '2rem',
screens: {
'2xl': '1400px',
},
},
extend: {
colors: {
'white': '#ffffff',
'black': '#000000',
"purple-1": '#611F69',
'lightgrey-1': '#8C8C8C',
'green-1': '#6B9F36',
'lightpink-1': '#FCF6EF',
'orange-1': '#F9CD92',
'grey500-1': '#ECECEC',
'pink-1': "#FCF5EF",
'purple-2': '#451F49',
'emailbg-1': '#6a4c6d',
'offwhite': ' #FDFDFD',
'offblack' :'#333333',
'red-1' : '#FF605C',
"dark-2" : "#1E1E1E",
"dark-1" : "#2A2A2A",
},
screens: {
'xs': '480px',
},
width: {
'420': '420px',
'465': '465px',
},
fontFamily: {
poppins: ['Poppins', 'sans-serif'],
},
},
},
plugins: [],
};