-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.ts
47 lines (46 loc) · 1.09 KB
/
tailwind.config.ts
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
/** @type {import('tailwindcss').Config} */
export { };
module.exports = {
// important: true,
purge: [
"./app/Components/**/*.{js,ts,jsx,tsx}",
"./app/pageComponents/**/*.{js,ts,jsx,tsx}",
"./pages/**/*.{js,ts,jsx,tsx}",
"./pages/_app.tsx",
"./pages/_document.tsx",
"/styles/**/*.{css,module.css,scss,sass}",
"./styles/globals.css",
],
content: [
"./app/Components/**/*.{js,ts,jsx,tsx}",
"./app/pageComponents/**/*.{js,ts,jsx,tsx}",
"./pages/**/*.{js,ts,jsx,tsx}",
"./pages/_app.tsx",
"./pages/_document.tsx",
"./styles/**/*.{css,module.css,scss,sass}",
"./styles/globals.css",
],
theme: {
extend: {
fontFamily: {
sharp: ["Sharp Grotesk"],
serif: ["ui-serif", "Georgia"],
lato: ["Lato", "sans-serif"],
},
screens: {
mlg: "970px",
ssm: "440px",
sssm: "320px"
// => @media (min-width: 640px) { ... }
},
colors: {
bgCareerForm: "#FAFCFF",
blogTitle: "#666666",
},
},
},
plugins: [],
corePlugins: {
preflight: false,
},
};