-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
54 lines (53 loc) · 1.24 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
import type { Config } from "tailwindcss";
import typography from "@tailwindcss/typography";
export default {
content: ["./app/**/*.{js,jsx,ts,tsx,mdx}"],
theme: {
extend: {
colors: {
primary: "#363681",
secondary: "#2646BA",
tertiary: "#F3F2F8",
accent: "#E54F6D",
},
keyframes: {
sparkle: {
"0%": {
transform: "scale(0) rotate(0deg)",
},
"50%": {
transform: "scale(1) rotate(90deg)",
},
"100%": {
transform: "scale(0) rotate(180deg)",
},
},
"grow-and-shrink": {
"0%": {
transform: "scale(0)",
},
"50%": {
transform: "scale(1)",
},
"100%": {
transform: "scale(0)",
},
},
spin: {
from: {
transform: "rotate(0deg)",
},
to: {
transform: "rotate(180deg)",
},
},
},
animation: {
sparkle: "sparkle 700ms forwards",
"grow-and-shrink": "grow-and-shrink 700ms forwards",
spin: "spin 1000ms linear forwards",
},
},
},
plugins: [typography],
} satisfies Config;