-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
30 lines (30 loc) · 925 Bytes
/
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
// tailwind.config.js
const defaultTheme = require("tailwindcss/defaultTheme");
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./pages/**/*.{js,ts,jsx,tsx}", "./components/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
fontSize: { "2xl": "1.4rem" },
colors: {
indigo: {
300: "#388bff",
400: "#388bff",
500: "#388bff",
600: "#388bff",
700: "#388bff",
800: "#388bff",
},
blue: {
300: "#388bff",
400: "#388bff",
500: "#388bff",
600: "#388bff",
700: "#388bff",
800: "#388bff",
},
},
},
},
plugins: [require("@tailwindcss/forms")],
};