-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
50 lines (50 loc) · 1.26 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} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
colors: {
"shiny-yellow": "#FFF500",
},
backgroundImage: ({ theme }) => ({
"store-banner": "url('/src/assets/images/mw2-hd.jpg')",
"stars-gradient": `linear-gradient(90deg, ${theme(
"colors.amber.400"
)} var(--percent), ${theme("colors.gray.200")} var(--percent));`,
}),
animation: {
"opacity-pulse": "opacity-pulse .8s ease-in-out infinite alternate-reverse",
marquee: "marquee 10s linear infinite backwards",
},
keyframes: {
"opacity-pulse": {
"0%": { opacity: 0 },
"100%": { opacity: 1 },
},
marquee: {
"0%": { transform: "translateX(0%)" },
"100%": { transform: "translateX(-100%)" },
},
},
},
container: {
center: true,
padding: "1rem",
},
fontFamily: {
sans: [
"Inter",
"ui-sans-serif",
"system-ui",
"-apple-system",
"BlinkMacSystemFont",
"Segoe UI",
"Roboto",
"Helvetica Neue",
"Arial",
],
headings: "Montserrat",
},
},
plugins: [],
};