-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
85 lines (83 loc) · 1.8 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,jsx,ts,tsx}",
],
theme: {
extend: {
borderRadius: {
'button': '32px',
'modal': '20px',
'route': '8px'
}
},
colors:{
primary:{
100: '#BDE5E7',
200: '#80C9CB',
300: '#4DB3B6',
400: '#1A9DA1',
500: '#019296',
600: '#018387',
700: '#003A3C',
800: '#002C2D',
900: '#001D1E'
},
secondary:{
100: '#EBF4FF',
200: '#DADDFC',
300: '#AAB2F8',
400: '#7888F5',
500: '#3A5EEF',
600: '#1C3EB1',
700: '#0D236C',
800: '#030D35',
900: '#030D35'
},
status:{
success: '#83C45B',
warning: '#FCEA49',
error: '#FF5146'
},
neutral:{
black: '#000000',
900: '#212529',
800: '#343A40',
700: '#495057',
600: '#6C757D',
500: '#ADB5BD',
400: '#CED4DA',
300: '#DEE2E6',
200: '#E9ECEF',
100: '#F8F9FA',
white: '#FFFFFF'
},
},
fontSize:{
'h1': ['48px', '140%'],
'h2': ['40px', '120%'],
'h3': ['30px', '110%'],
'body': ['16px', '110%'],
},
fontFamily: {
'sans': 'Albert Sans'
}
},
plugins: [
function ({addUtilities}) {
const newUtilities = {
/* Hide scrollbar for Chrome, Safari and Opera */
".no-scrollbar::-webkit-scrollbar": {
display: "none"
},
/* Hide scrollbar for IE, Edge and Firefox */
".no-scrollbar": {
"-ms-overflow-style": "none", /* IE and Edge */
"scrollbar-width": "none" /* Firefox */
}
};
addUtilities(newUtilities)
}
],
}