-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
37 lines (36 loc) · 1.04 KB
/
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
import type { Config } from "tailwindcss";
import { spacing } from "tailwindcss/defaultTheme";
import { createThemes } from "tw-colors";
import tailwindCssAnimate from "tailwindcss-animate";
import { darkTheme } from "./src/theme/dark.theme";
import { lightTheme } from "./src/theme/light.theme";
import { Themes } from "./src/theme/themes.enum";
export default {
content: [
"./src/mdx-components.tsx",
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
space: {
"form-default": spacing[10],
},
boxShadow: {
"button-hover":
'-8px 0 16px -4px theme("colors.orange.500"), 0 0 16px -4px theme("colors.pink.500"), 8px 0 16px -4px theme("colors.blue.500")',
},
fontFamily: {
sans: ["var(--font-inter)"],
},
},
},
plugins: [
tailwindCssAnimate,
createThemes({
[Themes.light]: lightTheme,
[Themes.dark]: darkTheme,
}),
],
} satisfies Config;