forked from museapphq/infinitecanvas.tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.cjs
134 lines (134 loc) · 2.55 KB
/
tailwind.config.cjs
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
124
125
126
127
128
129
130
131
132
133
134
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
theme: {
borderRadius: {
none: 0,
4: "4px",
8: "8px",
full: "9999px"
},
borderWidth: {
DEFAULT: "1px",
0: "0",
2: "2px",
4: "4px",
8: "8px",
16: "16px"
},
colors: {
parchment: "#FCFAF6",
red: "#C7381E",
"dark-red": "#862514",
green: "#409E3F",
"dark-green": "#2B692A",
blue: "#3C9499",
"dark-blue": "#286467",
magenta: "#BF3C7A",
yellow: "#ECD437",
black: "#000000",
gray: "#2C393A",
white: "#FFFFFF",
brown: "#49461F",
transparent: "transparent"
},
dropShadow: {
1: "drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.1));"
},
fontFamily: {
sans: [
"IBM Plex Sans",
"-apple-system",
"BlinkMacSystemFont",
"avenir next",
"avenir",
"segoe ui",
"helvetica neue",
"helvetica",
"Cantarell",
"Ubuntu",
"roboto",
"noto",
"arial",
"sans-serif"
],
serif: [
"Merriweather",
"Iowan Old Style",
"Apple Garamond",
"Baskerville",
"Times New Roman",
"Droid Serif",
"Times",
"Source Serif Pro",
"serif",
"Apple Color Emoji",
"Segoe UI Emoji",
"Segoe UI Symbol"
],
title: [
"IBM Plex Sans",
"-apple-system",
"BlinkMacSystemFont",
"avenir next",
"avenir",
"segoe ui",
"helvetica neue",
"helvetica",
"Cantarell",
"Ubuntu",
"roboto",
"noto",
"arial",
"sans-serif"
]
},
fontSize: {
16: "16px",
20: "20px",
24: "24px",
32: "32px",
40: "40px",
48: "48px"
},
letterSpacing: {
normal: "0",
wide: "5%"
},
lineHeight: {
normal: "1",
high: "1.5"
},
maxWidth: {
1440: "1440px"
},
screens: {
1440: "1440px",
1280: "1280px",
1024: "1024px",
860: "860px",
768: "768px",
640: "640px",
540: "540px",
420: "420px"
},
spacing: {
0: 0,
2: "2px",
4: "4px",
8: "8px",
12: "12px",
16: "16px",
24: "24px",
32: "32px",
48: "48px",
64: "64px",
72: "72px",
96: "96px",
128: "128px",
168: "168px"
},
extend: {}
},
plugins: []
}