-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
46 lines (44 loc) · 953 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
43
44
45
46
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: {
primary: {
200: "#233554",
300: "#112240",
DEFAULT: "#0a192f",
500: "#020c1b",
},
green: {
DEFAULT: "#64ffda",
},
slate: {
200: "#ccd6f6",
300: "#a8b2d1",
DEFAULT: "#8892b0",
500: "#495670",
},
blue: {
DEFAULT: "#57cbff",
},
white: {
DEFAULT: "#e6f1ff",
},
pink: {
DEFAULT: "#f57dff",
},
},
fontFamily: {
sans: ["Calibre", "Inter", "SF Pro Text"],
mono: ["SF Mono", "Fira Code", "Roboto Mono"],
},
},
},
plugins: [],
};
export default config;