-
Notifications
You must be signed in to change notification settings - Fork 4
/
tailwind.config.ts
95 lines (94 loc) · 2.26 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
import type { Config } from "tailwindcss";
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}",
],
theme: {
container: {
center: true,
padding: "2rem",
},
screens: {
sm: "640px",
md: "768px",
lg: "1024px",
xl: "1280px",
},
extend: {
colors: {
border: "#384261",
input: "#191f41",
ring: "#7A90FF",
background: "#090a1a",
foreground: "#7d7c85",
primary: {
DEFAULT: "#7A90FF",
foreground: "#edf0fc",
},
secondary: {
DEFAULT: "#1f2751",
foreground: "#7A90FF",
},
tertiary: {
DEFAULT: "#090a1a",
},
quaternary: {
DEFAULT: "#ffffff20",
},
quinary: {
DEFAULT: "#9A9ABB",
},
senary: {
DEFAULT: "#282937",
},
destructive: {
DEFAULT: "#7A90FF",
foreground: "#090a1a",
},
muted: {
DEFAULT: "#9499CC",
foreground: "#9499CC",
},
accent: {
DEFAULT: "#2d334c",
foreground: "#7A90FF",
},
popover: {
DEFAULT: "#9499CC",
foreground: "#9499CC",
},
card: {
DEFAULT: "#090a1a",
foreground: "#7A90FF",
},
},
keyframes: {
"upDown": {
'0%, 100%': { transform: 'translateY(0)' },
'50%': { transform: 'translateY(20px)' },
},
"upDownLarge": {
'0%, 100%': { transform: 'translateY(0)' },
'50%': { transform: 'translateY(50px)' },
},
},
animation: {
"up-down": "upDown 5s ease-in-out infinite",
"up-down-3": "upDownLarge 7.8s ease-in-out infinite",
"up-down-2": "upDownLarge 7.6s ease-in-out infinite",
"up-down-1": "upDownLarge 7.4s ease-in-out infinite",
},
backgroundImage: {
work_project_bg: "url(/project-bg.webp)",
contact_illustration: "url(/project-bg-2.webp)",
},
},
},
plugins: [
require("tailwindcss-animate"),
require("tailwind-scrollbar"),
],
};
export default config;