This repository has been archived by the owner on Jan 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
74 lines (69 loc) · 2.38 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
module.exports = {
content: ["./src/**/*.html", "./src/**/*.js", "./src/**/*.php"],
theme: {
extend: {
colors: {
'primary': '#16A34A',
'secondary': '#E1BB80',
'accent': '#FFC107',
'accent-2': '#FF9800',
'accent-3': '#FF5722',
'accent-dark': '#e6a900',
'accent-2-dark': '#e68f00',
'accent-3-dark': '#e67300',
'beige-default': '#f4f4f4',
'beige-light': '#f8f8f8',
'beige-dark': '#eaeaea',
'beige-darker': '#e0e0e0',
'beige-darkest': '#d6d6d6',
'off-white' : '#C0C6C7',
},
backgroundImage: {
'user-dashboard-bg-image': "url('/src/resource/img/user-dashboard.webp')",
'sign-in-background-light': "url('/src/resource/img/sign-in-background-light.webp')",
'sign-up-background-light': "url('/src/resource/img/sign-up-background-light.webp')",
's3c2-1': "url('/src/resource/icons/index/main-section_shelf-three_c2-1_specialists.jpg')",
's3c2-3': "url('/src/resource/icons/index/main-section_shelf-three_c2-3_expert_bg.jpg')",
},
cursor: {
'hand': 'pointer',
},
animation: {
fadeIn: 'fadeIn 0.7s ease-in',
global_search_fadeIn: 'fadeIn 0.3s ease-in',
},
keyframes: {
fadeIn: {
'0%': {opacity: '0'},
'100%': {opacity: '1'},
},
global_search_fadeIn: {
'0%': {opacity: '0'},
'100%': {opacity: '1'},
},
}
},
fontFamily: {
'sans': ['-apple-system',
'BlinkMacSystemFont',
"Inter",
'Helvetica Neue',
'sans-serif',
'Apple Color Emoji',
'Segoe UI Emoji',
'Segoe UI Symbol'],
'mono': ['SFMono-Regular',
'JetBrains Mono',
],
}
},
plugins: [
require('@tailwindcss/typography'),
],
variants: {
fill: ['hover', 'focus'],
extend: {
animation: ['motion-safe'],
}
},
}