-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
80 lines (79 loc) · 1.83 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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html", "./src/**/*.{js,ts,jsx,tsx}",
"node_modules/preline/dist/*.js"
],
theme: {
prefix: 'hs-',
extend: {
fontSize: {
'10': '10px',
},
borderRadius: {
'18': '18px',
'20': '20px',
'40': '40px',
'70': '70px',
},
height: {
'5%': '5%',
'10%': '10%',
'11%': '11%',
'12%': '12%',
'15%': '15%',
'20%': '20%',
'25%': '25%',
'30%': '30%',
'35%': '35%',
'40%': '40%',
'45%': '45%',
'50%': '50%',
'55%': '55%',
'60%': '60%',
'64%': '64%',
'65%': '65%',
'69%': '69%',
'70%': '70%',
'75%': '75%',
'80%': '80%',
'85%': '85%',
'90%': '90%',
},
borderWidth: {
'1,5': '1.5px',
},
colors: {
'almond':'#F7E9D8',
'almond-hover':'#F6D1A7',
'primary': '#4746B8',
'primary-active': '#333182',
'primary-light': '#8C8BD3',
'secondary': '#EB9124',
'secondary-hover': '#BD6800',
'danger': '#DB1F22',
'danger-hover': '#8A1315',
'sucess-light': '#CBDCD4',
'success': '#037F6E',
'success-hover': '#2E7058',
'disabled': '#b2b2b2',
'warning': '#DDAD00',
'warning-hover': '#A88400',
'dark': '#484544',
'blue-custom': '#2F77BA',
'blue-custom-hover': '#245D92',
'gray-custom': '#D4CFCF',
'light': '#FFFFFF',
'light-gray': '#EFEFEF',
},
boxShadow: {
'custom': '5px 17px 15px rgba(58, 51, 51, 0.20)',
},
},
},
plugins: [
require('@tailwindcss/forms'),
require('tailwind-scrollbar'),
require('preline/plugin'),
],
};