-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
45 lines (44 loc) · 1.04 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
import type { Config } from "tailwindcss";
export default {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
primary: "#008DC3",
"primary-light": "#E3E0D2",
secondary: {
900: "#748995",
800: "#8295a0",
700: "#90a1aa",
600: "#9eacb5",
500: "#acb8bf",
400: "#bac4ca",
300: "#c7d0d5",
200: "#d5dcdf",
},
"secondary-dark": {
900: "#000000",
800: "#1a1a1a",
700: "#333333",
600: "#4d4d4d",
500: "#666666",
400: "#808080",
300: "#999999",
200: "#b3b3b3",
},
},
fontFamily: {
sans: ['"Stag Sans"', '"GE Dinar One"'],
},
animation: {
bounce200: "bounce 1s infinite 200ms",
bounce400: "bounce 1s infinite 400ms",
},
},
},
plugins: [],
} satisfies Config;