-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
83 lines (82 loc) · 1.93 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
const defaultTheme = require("tailwindcss/defaultTheme");
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: {
fontFamily: {
sans: [
"Calibre",
"Inter",
"ui-sans-serif",
"system-ui",
...defaultTheme.fontFamily.sans,
],
mono: [
"SF Mono",
"Fira Code",
"Fira Mono",
"Roboto Mono",
"ui-monospace",
"SFMono-Regular",
"Menlo",
"Monaco",
"Consolas",
"Liberation Mono",
"Courier New",
"monospace",
],
},
colors: {
background: "#0a192f",
brand: {
50: "#dcf3ff",
100: "#aed7ff",
200: "#7dbdff",
300: "#4aa3ff",
400: "#1a88ff",
500: "#006fe6",
600: "#0056b4",
700: "#003d82",
800: "#002551",
900: "#000d21",
},
secondary: {
50: "#fff1da",
100: "#ffd8ae",
200: "#ffc07d",
300: "#ffa74c",
400: "#ff8e1a",
500: "#e67400",
600: "#b45a00",
700: "#814000",
800: "#4f2600",
900: "#112240",
},
gray: {
50: "#f5f5f5",
100: "#d9d9d9",
200: "#bfbfbf",
300: "#a6a6a6",
400: "#8c8c8c",
500: "#737373",
600: "#595959",
700: "#282828",
800: "#262626",
900: "#120b0d",
},
},
backgroundImage: {
"gradient-radial": "radial-gradient(var(--tw-gradient-stops))",
"gradient-conic":
"conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))",
},
},
},
plugins: [],
};
export default config;