-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
49 lines (47 loc) · 1.34 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
const plugin = require("tailwindcss/plugin");
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./src/app/recipe/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/finder/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/resume/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/components/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
fontSize: {
"4xl": "2.8rem",
"3xl": "1.7rem",
"2xl": "1.5rem"
},
textShadow: {
"2xl": "5px 10px;"
},
textColor: {
"primary": "#E49756",
"secondary": "#bb7e4b"
},
colors: {
"primary": "#E49756",
"secondary": "#bb7e4b",
},
backgroundColor: {
"primary-white": "#f7f7f7",
"primary": "#E49756",
"secondary": "#bb7e4b",
},
themeColor: {
"primary": "#f7f7f7"
},
},
},
plugins: [
plugin(function ({addBase, theme}) {
addBase({
"h1": {fontSize: theme("fontSize.4xl")},
"h2": {fontSize: theme("fontSize.3xl")},
"h3": {fontSize: theme("fontSize.2xl")}
});
})
],
}