-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
43 lines (43 loc) · 945 Bytes
/
tailwind.config.js
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./app/**/*.{ts,tsx,jsx,js}"],
darkMode: "class",
theme: {
extend: {
fontFamily: {
sans: [
"Atkinson Hyperlegible",
"ui-sans-serif",
"system-ui",
"-apple-system",
"BlinkMacSystemFont",
"Segoe UI",
"Roboto",
"Helvetica Neue",
"Arial",
"Noto Sans",
"sans-serif",
"Apple Color Emoji",
"Segoe UI Emoji",
"Segoe UI Symbol",
"Noto Color Emoji",
],
},
colors: {
pk: {
50: "#FCEEDD",
100: "#FBE4CB",
200: "#F8D0A5",
300: "#F5BD7F",
400: "#F2A959",
500: "#EE8E25",
600: "#CB7210",
700: "#97550C",
800: "#633708",
900: "#2F1A04",
},
},
},
},
plugins: [],
};