-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtailwind.config.js
More file actions
37 lines (35 loc) · 910 Bytes
/
tailwind.config.js
File metadata and controls
37 lines (35 loc) · 910 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
const defaultTheme = require("tailwindcss/defaultTheme");
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./app/**/*.{js,ts,jsx,tsx}",
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
// Or if using `src` directory:
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
container: {
center: true,
padding: {
DEFAULT: "1.5rem",
sm: "2rem",
md: "3rem",
lg: "6.2rem",
},
},
extend: {
colors: {
primary: "#9CA3AF",
secondary: "#E5E7EB",
accent: "#83DBFF",
base_col: "#111827",
base_col_darker: "#151E31",
},
fontFamily: {
sans: ["var(--font-poppins)", ...defaultTheme.fontFamily.sans],
mono: ["var(--font-roboto-mono)", ...defaultTheme.fontFamily.mono],
},
},
},
};