generated from yuta-ike/next-ts-tailwind
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
46 lines (45 loc) · 1.08 KB
/
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
44
45
46
/** @type {import('@types/tailwindcss/tailwind-config').TailwindConfig} */
const config = {
content: ["./src/**/*.{js,jsx,ts,tsx,html,md,mdx}"],
theme: {
extend: {
colors: {
twhite: {
50: "#afb7c2",
100: "#cfd6df",
200: "#dbe1e9",
400: "#f5f5f5",
},
},
backgroundImage: {
stripe:
"repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.08) 7px, transparent 0, transparent 14px)",
},
},
fontFamily: {
sans: [
"-apple-system",
"'Helvetica Neue'",
"Arial",
"'Hiragino Sans'",
"'Hiragino Kaku Gothic ProN'",
"Meiryo",
"sans-serif",
],
serif: ["ui-serif", "Georgia", "Cambria", '"Times New Roman"', "Times", "serif"],
mono: [
"'Fira Code'",
"ui-monospace",
"SFMono-Regular",
"Menlo",
"Monaco",
"Consolas",
'"Liberation Mono"',
'"Courier New"',
"monospace",
],
},
},
plugins: [],
}
module.exports = config