-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.mjs
54 lines (53 loc) · 1.36 KB
/
tailwind.config.mjs
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
/* eslint-disable import/no-anonymous-default-export */
/** @type {import('tailwindcss').Config} */
import {
themeColors,
themeTransitionDelay,
themeHeight,
themeWidth,
} from "./src/theme";
export default {
content: [
"./src/sections/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: themeColors,
transitionDelay: themeTransitionDelay,
transitionDuration: {
2000: "2000ms",
},
fontFamily: {
sans: ['"Helvetica Neue"', "system-ui"],
serif: ["ui-serif", "Georgia"],
},
width: themeWidth,
height: themeHeight,
dropShadow: {
ABAIR: "0px 0px 10px rgba(0, 0, 0, 0.75)",
applications: "0px 5px 8px rgba(0, 0, 0, 0.4)",
applicationsHover: "0px 5px 12px rgba(0, 0, 0, 0.4)",
},
animation: {
marquee: "marquee 120s linear infinite",
marquee2: "marquee2 120s linear infinite",
},
keyframes: {
marquee: {
"0%": { transform: "translateX(0%)" },
"100%": { transform: "translateX(-100%)" },
},
marquee2: {
"0%": { transform: "translateX(100%)" },
"100%": { transform: "translateX(0%)" },
},
},
scale: {
102: "1.02",
},
},
},
plugins: [],
};