-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
44 lines (41 loc) · 943 Bytes
/
tailwind.config.js
File metadata and controls
44 lines (41 loc) · 943 Bytes
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
import defaultTheme from "tailwindcss/defaultTheme";
import forms from "@tailwindcss/forms";
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./components/**/*.{js,ts,jsx,tsx,mdx}", "./pages/**/*.{js,ts,jsx,tsx,mdx}"],
theme: {
extend: {
colors: {
white: "#FFFFFF",
transparent: "transparent",
neutral: {
100: "#F5F5F5",
200: "#D9D9D9",
250: "#A9A9A9",
300: "#808080",
400: "#424242",
500: "#272727",
600: "#121212",
},
},
fontFamily: {
sans: ["Inter", ...defaultTheme.fontFamily.sans],
},
},
lineHeight: {
tight: "1.2",
normal: "1.5",
},
screens: {
xxs: "375px",
xs: "480px",
...defaultTheme.screens,
},
textAlign: {
left: "right",
center: "right",
right: "right",
},
},
plugins: [forms],
};