-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
41 lines (39 loc) · 965 Bytes
/
tailwind.config.ts
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
import type { Config } from "tailwindcss";
import typography from "@tailwindcss/typography";
const config: Config = {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
"./contents/**/*.mdx",
],
theme: {
extend: {
screens: {
xs: "480px",
base: "990px",
},
colors: {
background: "var(--background)",
foreground: "var(--foreground)",
customBlue: "#3257ff",
},
fontFamily: {
soleil: "var(--font-soleil)",
},
keyframes: {
boxBounce: {
"0%, 100%": { boxShadow: "0 0 5px 2px rgba(50, 87, 255, 0.5)" },
"50%": { boxShadow: "0 0 20px 10px rgba(50, 87, 255, 0.8)" },
},
},
animation: {
boxBounce: "boxBounce 1.5s ease-in-out infinite",
},
},
},
plugins: [
typography,
],
};
export default config;