forked from remix-run/react-router-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
123 lines (122 loc) · 3.46 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
/**
* Site Design: https://www.figma.com/file/FIf4Len6Cgl8rzU8gshJ5s/Design-System?node-id=0%3A1
* Logos: https://www.figma.com/file/FWIGxAs7I9m54YoBHnBU1h/Logo-Design?node-id=61%3A510
* Color scheme: https://tailwind.ink?p=7.f9faf9f0f1f1dddfe1b7bcbe8894936a726d54575040413c2c2b2a121212fdfcfbfcf0edf9ccdbf09eb7ee6e90f44250d03150aa253a7d1a264d1014faf9f0f8ef9ffecc1bd3be33a69719837a0b686207514a07373307271f06f2f6f1e0f0deb6e7b56bd96833ad4e22942c1e7e1f1b611b1443170f2913ecf4f3c9eff03defe954cfb71db28b14996313844c13663e0f46300b2c25f5f9fbdff0fcbcdcf98ebbf03992ff4d71da3f55c93240a7232b7a141b4efcfbfbf9eef5f4caece79fd7e571bed83bd2c1338b9a2769701c45441325
*
*/
import type { Config } from "tailwindcss";
import defaultTheme from "tailwindcss/defaultTheme";
export default {
content: ["./app/**/*.{ts,tsx}"],
darkMode: "class",
theme: {
fontSize: {
...defaultTheme.fontSize,
},
container: {
center: true,
padding: {
DEFAULT: "24px",
sm: "24px",
md: "32px",
lg: "40px",
},
},
extend: {
colors: {
current: "currentColor",
gray: {
50: "#f7f7f7",
100: "#e3e3e3",
200: "#c8c8c8",
300: "#a4a4a4",
400: "#818181",
500: "#666666",
600: "#515151",
700: "#434343",
800: "#383838",
900: "#121212",
},
red: {
50: "#fef2f3",
100: "#ffe1e3",
200: "#ffc9cd",
300: "#fea3aa",
400: "#fc6d78",
500: "#f44250",
brand: "#f44250", // hard-coded in embedded SVG for <docs-*> elements
600: "#e12130",
700: "#bd1825",
800: "#9d1722",
900: "#821a22",
},
yellow: {
50: "#fffce8",
100: "#fff9c2",
200: "#fff087",
300: "#ffde44",
400: "#fecc1b",
brand: "#fecc1b", // hard-coded in embedded SVG for <docs-*> elements
500: "#eeb004",
600: "#cd8701", // hard-coded in embedded SVG for <docs-*> elements
700: "#a45f04",
800: "#874b0c",
900: "#733d10",
},
green: {
50: "#f2fcf1",
100: "#dffade",
200: "#c1f3bf",
300: "#90e88d",
400: "#6bd968",
brand: "#6bd968",
500: "#30ba2d",
600: "#229920",
700: "#1d791c",
800: "#1c601b",
900: "#184f18",
},
aqua: {
50: "#effefc",
100: "#cafdf8",
200: "#94fbf4",
300: "#3defe9",
brand: "#3defe9",
400: "#24dddc",
500: "#0cbdc0",
600: "#06969b",
700: "#0a767b",
800: "#0d5e62",
900: "#104d51",
},
blue: {
50: "#eef7ff",
100: "#d9edff",
200: "#bce0ff",
300: "#8ecdff",
400: "#59b0ff",
500: "#3992ff",
brand: "#3992ff", // hard-coded in embedded SVG for <docs-*> elements
600: "#1b6ef5",
700: "#1458e1",
800: "#1747b6",
900: "#193f8f",
},
pink: {
50: "#fff4ff",
100: "#fde8ff",
200: "#fbd1fd",
300: "#faadfa",
400: "#f77bf6",
500: "#ec49e9",
600: "#d83bd2",
brand: "#d83bd2",
700: "#ac1fa3",
800: "#8d1b85",
900: "#731c6b",
},
},
},
},
plugins: [],
} satisfies Config;