-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
31 lines (30 loc) · 689 Bytes
/
tailwind.config.js
File metadata and controls
31 lines (30 loc) · 689 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
const defaultTheme = require("tailwindcss/defaultTheme");
const colors = require("tailwindcss/colors");
module.exports = {
mode: "jit",
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
rose: colors.rose,
wbg: {
gray: "#9C9C9C",
dark: "#252525",
green: { DEFAULT: "#AFCA0B", dark: "#a2bb0a" },
blue: "#30BAED",
},
},
fontFamily: {
sans: ["Inter", ...defaultTheme.fontFamily.sans],
},
},
},
variants: {},
plugins: [
require("@tailwindcss/forms"),
require("@tailwindcss/aspect-ratio"),
],
};