-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
78 lines (78 loc) · 2.22 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
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
fontFamily: {
poppins: ['Poppins', 'sans-serif'],
},
screens: {
bimobile: '496px',
mobile: '640px',
tablet: '768px',
ipad: '1024px',
laptop: '1280px',
desktop: '1536px',
},
extend: {
colors: {
action: {
error: '#E53835',
success: '#1D8E36',
warning: '#FBC02D',
},
inputCaption: '#858585',
inputBg: '#d9d9d9',
overlay: '#a5b4be',
neutral: {
grey: '#a5b4be',
black: '#000000',
white: '#fcfdfe',
darkRed: '#700303',
},
primary: {
lightblue: '#266491',
},
modalOverlay: 'rgba(0, 0, 0, 0.5)',
evenRawsbg: '#DDDDDD',
},
backgroundImage: {
'custom-gradient':
'linear-gradient(90deg, rgba(14,36,52,1) 0%, rgba(38,100,144,1) 42%, rgba(38,100,145,1) 42%, rgba(41,106,154,1) 100%)',
authenticationBackgroundImage:
'url("./src/assets/register-login-background.svg")',
},
boxShadow: {
'inner-bottom':
'inset 0 -4px 6px -1px rgba(0, 0, 0, 0.1), inset 0 -2px 4px -1px rgba(0, 0, 0, 0.06)',
'bottom-left-right':
'2px 2px 4px rgba(0, 0, 0, 0.5), -2px 2px 4px rgba(0, 0, 0, 0.5)',
'dark-lg':
'0 10px 10px -3px rgba(0, 0, 0, 0.2), 0 4px 6px -4px rgba(0, 0, 0, 0.2)',
},
transparent: 'transparent', // Add this line for transparent background
},
backgroundImage: {
'custom-gradient':
'linear-gradient(90deg, rgba(14,36,52,1) 0%, rgba(38,100,144,1) 42%, rgba(38,100,145,1) 42%, rgba(41,106,154,1) 100%)',
authenticationBackgroundImage:
'url("./src/assets/register-login-background.svg")',
},
boxShadow: {
'inner-bottom':
'inset 0 -4px 6px -1px rgba(0, 0, 0, 0.1), inset 0 -2px 4px -1px rgba(0, 0, 0, 0.06)',
'bottom-left-right':
'2px 2px 4px rgba(0, 0, 0, 0.5), -2px 2px 4px rgba(0, 0, 0, 0.5)',
'dark-lg':
'0 10px 10px -3px rgba(0, 0, 0, 0.2), 0 4px 6px -4px rgba(0, 0, 0, 0.2)',
'custom-light': '0 2px 4px rgba(0, 0, 0, 0.1)',
'custom-medium': '0 4px 8px rgba(0, 0, 0, 0.2)',
'custom-heavy': '0 8px 16px rgba(0, 0, 0, 0.4)',
},
},
variants: {
extend: {
boxShadow: ['responsive', 'hover', 'focus'],
},
},
plugins: [],
};