-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
61 lines (61 loc) · 1.91 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
mode: "jit",
theme: {
extend: {
backgroundImage: {},
fontFamily: {
jbmono: ['"JetBrains Mono"', "monospace"],
pstart: ['"Press Start 2P"', "monospace"],
},
colors: {
"yellow-fs": "rgb(226, 183, 20)",
// "gray-line": "rgb(168, 168, 168, 0.3)",
"gray-fs-100": "rgb(226, 183, 20, 0.2)",
"gray-fs": "rgb(226, 183, 20, 0.5)",
"gray-primary": "rgb(50, 52, 55)",
},
typography(theme) {
return {
DEFAULT: {
css: {
h1: {
fontFamily: theme("fontFamily.pstart"),
},
"code::before": {
content: "none", // don’t generate the pseudo-element
// content: '""', // this is an alternative: generate pseudo element using an empty string
},
"code::after": {
content: "none",
},
code: {
// color: theme('colors.slate.500'),
// backgroundColor: theme('colors.stone.100'),
borderRadius: theme("borderRadius.DEFAULT"),
paddingLeft: theme("spacing[1.5]"),
paddingRight: theme("spacing[1.5]"),
paddingTop: theme("spacing.1"),
paddingBottom: theme("spacing.1"),
},
a: {
transitionDuration: "300ms",
textDecoration: "none",
color: "rgba(226, 183, 20, 0.8)",
"&:hover": {
color: "rgba(226, 183, 20, 1)",
},
},
},
},
};
},
},
},
plugins: [require("@tailwindcss/typography")],
};