forked from gauravsingh1281/Rentalog.in--Frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
44 lines (44 loc) · 1.05 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
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
transitionProperty: {
'colors': 'background-color, border-color, color',
'shadow': 'box-shadow',
},
transitionTimingFunction: {
'in-out': 'cubic-bezier(0.4, 0, 0.2, 1)',
},
},
screens: {
sm: "480px",
md: "768px",
lg: "976px",
xl: "1440px",
},
colors: {
primaryGreen: "#1ABC9C",
customRed: "#CD4347",
green: "#1ABC93",
"green-dark": "#047558",
textBlack: "#312F2F",
textWhite: "#F8F8F8",
black: "#000000",
"gray-dark": "#273444",
gray: "#8492a6",
"gray-light": "#d3dce6",
"light-blue": "#e8f8f4",
},
fontFamily: {
sans: ["Graphik", "sans-serif"],
serif: ["Merriweather", "serif"],
monsterrat: ["Montserrat", "sans-serif"],
},
boxShadow: {
widget: '3px 3px #b9c3c1',
'widget-hover': '5px 5px #b9c3c1',
},
},
plugins: [],
};