Create tailwind.config.js
Browse files- tailwind.config.js +22 -0
tailwind.config.js
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
/** @type {import('tailwindcss').Config} */
|
| 2 |
+
module.exports = {
|
| 3 |
+
content: [
|
| 4 |
+
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
|
| 5 |
+
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
|
| 6 |
+
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
|
| 7 |
+
],
|
| 8 |
+
theme: {
|
| 9 |
+
extend: {
|
| 10 |
+
fontFamily: {
|
| 11 |
+
sans: ["Inter", "sans-serif"],
|
| 12 |
+
},
|
| 13 |
+
colors: {
|
| 14 |
+
primary: "#6366f1",
|
| 15 |
+
surface: "#0f0f13",
|
| 16 |
+
card: "#1a1a24",
|
| 17 |
+
border: "#2a2a3a",
|
| 18 |
+
},
|
| 19 |
+
},
|
| 20 |
+
},
|
| 21 |
+
plugins: [],
|
| 22 |
+
};
|