-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
44 lines (41 loc) · 1.03 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
/** @type {import('tailwindcss').Config} */
const defaultTheme = require("tailwindcss/defaultTheme")
const colors = require("tailwindcss/colors")
let breakpoints = Object.assign({}, defaultTheme.screens)
delete breakpoints["2xl"] // delete the 2xl breakpoint
module.exports = {
content: ["./{components,app,styles}/**/*.{js,jsx,ts,tsx}"],
theme: {
extend: {
fontFamily: {
sans: [
"var(--font-inter)",
"system-ui",
"-apple-system",
"BlinkMacSystemFont",
"Segoe UI",
"Roboto",
"Oxygen",
"Ubuntu",
"Cantarell",
"Fira Sans",
"Droid Sans",
"Helvetica Neue",
"sans-serif",
],
},
container: {
screens: breakpoints,
center: true,
},
colors: {
action: {
default: colors.pink["600"],
base: colors.pink["600"],
hover: colors.pink["500"],
},
},
},
},
plugins: [require("@tailwindcss/typography")],
}