generated from ReCoded-Org/capstone-react-redux-template
-
Notifications
You must be signed in to change notification settings - Fork 8
/
tailwind.config.js
48 lines (48 loc) · 1.47 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{js,jsx,ts,tsx}'],
theme: {
extend: {
backgroundImage: {
"signin-background": "url('https://cdn.discordapp.com/attachments/1031834305703460906/1037447936616964136/bg.png')",
"hero-bg": "url('https://images.unsplash.com/photo-1561715276-a2d087060f1d?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1170&q=80')",
"home-page-for-signed-in-users": "url('https://images-ext-1.discordapp.net/external/_dmgTTDuHOWyaT_6guDv3zWcxpEaLAWsv4TW6ukmHUw/https/img.freepik.com/premium-photo/woman-hand-holding-paper-shopping-bag-blue-banner-background-discounts-sale-concept-panoramic-image_74952-1326.jpg')"
},
keyframes: {
scroll: {
'0%': {
transform: 'translateX(18%)'
},
'100%': {
transform: 'translateX(-300%)'
}
}
},
animation: {
scroll: 'scroll 30s infinite linear'
},
colors: {
primary: '#16425B',
secondary: '#2F6690',
tertiary: '#81C3D7',
background: '#D9DCD6'
},
fontFamily: {
inter: ['Inter', 'sans-serif'],
},
transitionDuration: {
'0': '0ms',
},
maxHeight: {
"100": '26rem',
},
minHeight: {
"100": '26rem',
"20": '5rem',
},
},
plugins: [
require('@tailwindcss/forms'),
],
},
};