-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
57 lines (56 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
45
46
47
48
49
50
51
52
53
54
55
56
/** @type {import('tailwindcss').Config} */
export default {
darkMode: 'class',
content: [
"./index.html",
"./src/**/*.{vue,js,ts,jsx,tsx}",
],
theme: {
colors: {
transparent: 'transparent',
white: '#fff',
purple: '#635FC7',
'light-purple': '#A8A4FF',
black: {
100: '#000112',
200: '#20212C',
300: '#2b2c37',
400: '#3e3f4e',
},
grey: {
100: '#828fa3',
200: '#e4ebfa',
300: '#f4f7fd',
},
red: {
100: '#ea5555',
200: '#ff9898'
},
},
extend: {
borderRadius: {
'20px': '20px'
},
spacing: {
'10px': '10px',
'30px': '30px',
'50px': '50px',
'25': '100px',
'30': '120px',
'65': '260px',
'70': '280px',
'75': '300px'
},
fontSize: {
small: ['12px', 'normal'],
tiny: ['13px', '23px'],
middle: ['18px', 'normal'],
},
zIndex: {
'1': '1',
'1000': '1000'
}
},
},
plugins: [],
}