-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
56 lines (54 loc) · 1.49 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
// /** @type {import('tailwindcss').Config} */
import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {},
colors: {
"white": "#F8F9F2",
"muted-white": "#B0B0B0",
"orange": "#FF5500",
"orange-light": "#fd7202",
"indigo": {
light: "#1d1e29",
normal: "#222331"
},
"grey": {
light: "#2e2e2e",
normal: "#242424",
dark: "#1b1b1b",
},
"blue": "#82AAFF",
"green": "#50FA7B",
"red": "#FF5555",
"yellow": "#FFCB6B",
"magenta": "#C792EA",
"cyan": "#8BE9FD",
"teal": "#73DACA",
},
keyframes: {
"fade_down" : {
"0%": { transform: "translateY(-0.5rem)", opacity: "0"},
"100%": { transform: "translateY(0)", opacity: "1"},
},
"fade_up" : {
"0%": { transform: "translateY(0.5rem)", opacity: "0"},
"100%": { transform: "translateY(0)", opacity: "1"},
},
},
// maybe create own bezier curve for nicer animation doesn't feel right rn
animation: {
"fade-up" : "fade_up 0.4s ease-out forwards",
"fade-down" : "fade_down 0.4s ease-out var(--delay, 0) forwards",
},
fontFamily: {
meslo: ["var(--meslo)"],
}
},
plugins: [],
}
export default config;