-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
54 lines (53 loc) · 1.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
import typography from "@tailwindcss/typography";
import type { Config } from "tailwindcss";
import defaultTheme from "tailwindcss/defaultTheme";
export default {
content: [],
theme: {
fontFamily: {
sans: ["Inter", ...defaultTheme.fontFamily.sans],
},
extend: {
colors: {
tanablue: {
900: "#031D33",
800: "#134369",
700: "#2D6EA3",
600: "#4F98D3",
500: "#6AAFE6",
400: "#89C4F4",
300: "#A1D3FC",
200: "#BCE1FE",
100: "#D5ECFF",
50: "#E7F4FF",
},
tanaamber: {
900: "#302000",
800: "#583C01",
700: "#805802",
300: "#FABF35",
600: "#A87504",
500: "#DA9A0A",
400: "#F8B60B",
200: "#FBD67D",
100: "#FDE9B7",
50: "#FFFBF1",
},
},
fontFamily: {
lexend: "Lexend",
condensed: "IBM Plex Sans Condensed",
},
animation: {
scrolling: "scrolling 30s linear infinite",
},
keyframes: {
scrolling: {
"0%": { transform: "translateY(0)" },
"100%": { transform: "translateY(-100%)" },
},
},
},
},
plugins: [typography],
} satisfies Config;