-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
67 lines (65 loc) · 1.91 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
/** @type {import('tailwindcss').Config} */
const flowbite = require("flowbite-react/tailwind");
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
flowbite.content(),
],
theme: {
extend: {
fontFamily: {
sans: ['como', 'sans-serif']
},
colors: {
'grey-primary': '#252826',
'grey-footer': '#151515',
'action-yellow': '#FFAC00',
'comment-card-color': '#F1F1F1',
'comment-card-review-date-color': '#838383',
'border-gray': '#D3D3D3',
'gray-text': '#A9A9A9',
'search-background': '#F4F8F9',
'modal-background': '#E6E5DF',
},
keyframes: {
'open-menu': {
'0%': { transform: 'scaleY(0)' },
'80%': { transform: 'scaleY(1.2)' },
'100%': { transform: 'scaleY(1)' },
},
},
animation: {
'open-menu': 'open-menu 0.5s ease-in-out forwards',
},
backgroundImage: {
'desktop-landing-page': "url('/Keis3.JPG')",
'mobile-landing-page': "url('/KeiMobileLanding2.jpg')",
'kei-footer': "url('/Kei-footer.png')",
'landing-page-kei-lineup': "url('/LandingKeiLineUp2.png')",
'inventory-kei-banner': "url('/InventoryBanner.jpg')",
'modal-kei-standoff': "url('/KeisStandOffModal.jpg')",
'kei-hauler': "url('/Kei-Hauler.png')",
},
dropShadow: {
'lg': '0 10px 8px rgb(0, 0, 0, 0.2)',
},
screens: {
'navLineWrapEnd': '768px',
'navLineWrapStart': '1425px',
'threeInventoryColBreakPoint': '950px',
'fourInventoryColBreakPoint': '1160px',
'fiveInventoryColBreakPoint': '1600px',
'sixInventoryColBreakPoint': '1790px',
'eightInventoryColBreakPoint': '1929px',
'largerMobile': '391px',
},
rotate: {
'135': '135deg',
}
},
},
plugins: [
flowbite.plugin(),
],
}