-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
50 lines (50 loc) · 1.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
/** @type {import('tailwindcss').Config} */
const defaultTheme = require("tailwindcss/defaultTheme");
module.exports = {
content: ["./public/**/*.{html,js}"],
theme: {
screens: {
xs: "480px",
...defaultTheme.screens,
},
extend: {
fontFamily: {
Karlar: ["Karla", "sans-serif"],
},
colors: {
coffee: {
50: "#E8D6D0",
200: "#C89F94",
400: "#A25F4B",
600: "#744838",
},
background: {
1: "#F6F6F6",
}
},
keyframes: {
slideDown: {
"0%": { transform: "translateY(-50%)", opacity: 0 },
"100%": { transform: "translateY(0)", opacity: 1 },
},
fadeIn: {
from: { opacity: 0 },
to: { opacity: 1 },
},
rightIn: {
"0%": { transform: "translateX(100%)", opacity: 0 },
"100%": { transform: "translateX(0)", opacity: 1 },
}
},
animation: {
slideDown: "slideDown .2s linear",
fadeIn: "fadeIn 0.5s ease-in-out",
rightIn: "rightIn 0.5s ease-in-out",
},
backgroundImage: {
"slider-bg": "url('./img/slider_bg.jpg')",
},
},
},
plugins: [],
};