generated from deepgram/oss-repo-template
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtailwind.config.ts
42 lines (40 loc) · 976 Bytes
/
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
import type { Config } from "tailwindcss";
export default {
content: [
"./app/**/*.{js,ts,jsx,tsx,mdx}",
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
// Or if using `src` directory:
"./src/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
fontFamily: {
favorit: ["var(--font-favorit)", "Arial", "sans serif"],
inter: ["var(--font-inter)", "Arial", "sans serif"],
fira: ["var(--font-fira)", "monospace"],
},
colors: {
gray: {
25: "#FBFBFF",
200: "#E1E1E5",
350: "#BBBBBF",
450: "#949498",
600: "#616165",
700: "#4E4E52",
800: "#2C2C33",
850: "#1A1A1F",
900: "#101014",
1000: "#0B0B0C",
},
blue: {
link: "#79AFFA",
},
green: {
spring: "#13EF93",
},
},
},
},
plugins: [],
} satisfies Config;