-
Notifications
You must be signed in to change notification settings - Fork 4
/
tailwind.config.js
48 lines (48 loc) · 1.06 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./index.html", "./src/**/*.{vue,js,ts,jsx,tsx}"],
darkMode:'class',
theme: {
maxWidth: {
'3xs': '16.5rem',
'xs': '21.5rem',
'md': '30rem'
},
colors: {
"main-purple": "#635FC7",
"main-purple-light": "#A8A4FF",
"black": "#000112",
"very-dark-grey": "#20212C",
"dark-grey": "#2B2C37",
"medium-grey": "#828FA3",
"light-grey": "#F4F7FD",
"lines-dark": "#3E3F4E",
"lines-light": "#E4EBFA",
"red": "#EA5555",
"red-light": "#FF9898",
"white": "#FFFFFF"
},
fontSize: {
'xs': '.75rem',
'sm': '.8rem',
'base': '.94rem',
'lg': '1.125rem',
'xl': '1.25rem',
'2xl': '1.5rem',
'3xl': '1.875rem',
'4xl': '2.25rem',
'5xl': '3rem',
'6xl': '4rem',
'7xl': '5rem',
},
extend: {
boxShadow: {
'task': '0 4px 6px 0px rgba(54, 78, 126, 0.1)',
},
spacing: {
'4.5': '1.125rem'
}
}
},
plugins: [],
};