-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
61 lines (59 loc) · 1.46 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
51
52
53
54
55
56
57
58
59
60
61
const colors = require("tailwindcss/colors");
module.exports = {
mode: "jit",
purge: ["./pages/**/*.{js,ts,jsx,tsx}", "./components/**/*.{js,ts,jsx,tsx}"],
darkMode: false,
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-primary": "#1F1F20",
"gray-light": "#b2bbcf",
"gray-medium": "#767c85",
"gray-darker": "#2a2a2c",
"gray-dark": "#1F1F20",
"gray-darkest": "#141414",
"blue-darker": "#000f2e",
"blue-darkest": "#000c24",
"blue-dark": "#192742",
"blue-light": "#009ac5",
},
rotate: {
360: "360deg",
},
keyframes: {
fadeIn: {
"0%": { opacity: "0" },
"100%": { opacity: "1" },
},
},
animation: {
fadeInAndBounce: "fadeIn 3s ease-out",
},
willChange: {
projectCard: "border-color, opacity, transform",
footerLink: "border-color, transform",
},
},
},
variants: {
extend: {},
},
plugins: [require("@tailwindcss/forms")],
};