-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
64 lines (63 loc) · 1.57 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
import colors from 'tailwindcss/colors';
import type { Config } from 'tailwindcss';
export default {
mode: "jit",
content: ["./src/pages/**/*.{js,ts,jsx,tsx}", "./src/components/**/*.{js,ts,jsx,tsx}"],
darkMode: 'media',
theme: {
fontFamily: {
sans: ["Be Vietnam Pro", "Inter", "system-ui", "sans"],
monospace: ["DM Mono", "monospace"],
},
colors: {
black: colors.black,
white: colors.white,
gray: colors.gray,
indigo: colors.indigo,
red: colors.rose,
yellow: colors.yellow,
blue: colors.blue,
green: colors.green,
orange: colors.orange,
purple: colors.purple,
pink: colors.pink,
},
extend: {
colors: {
bg: "#18181b",
"secondary-light": "#b2bbcf",
"secondary": "#7b89a8",
"secondary-medium": "#767c85",
"secondary-darker": "#2a2a2c",
"secondary-dark": "#1F1F20",
"secondary-darkest": "#141414",
"primary": "#dc2626",
"primary-darker": "#b91c1c",
"primary-darkest": "#000c24",
"primary-dark": "#192742",
"primary-light": "#dc2626",
},
rotate: {
'360': '360deg'
},
keyframes: {
fadeIn: {
'0%': { opacity: '0' },
'100%': { opacity: '1' },
}
},
animation: {
'fadeInAndBounce': 'fadeIn 3s ease-out',
},
willChange: {
'projectCard': 'border-color, opacity, transform',
}
},
},
variants: {
extend: {},
},
plugins: [
require('@tailwindcss/forms'),
],
} satisfies Config;