-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
33 lines (32 loc) · 847 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
33 lines (32 loc) · 847 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
const defaultTheme = require("tailwindcss/defaultTheme");
const colors = require("tailwindcss/colors");
module.exports = {
mode: "jit",
purge: ["./pages/**/*.{js,ts,jsx,tsx}", "./components/**/*.{js,ts,jsx,tsx}"],
darkMode: "class", // or 'media' or 'class'
theme: {
extend: {
colors: {
primary: "#7B62FF",
secondary: "#D9D9D9",
success: "#62FF97",
danger: "#FF6262",
warning: "#FFF962",
info: "#D9D9D9",
light: "#FFFFFF",
dark: "#0E0F13",
darkGrey: "#171C1C",
LightGrey: "#1A1C24",
trueGrey: colors.trueGray
}
},
fontFamily: {
sans: ["Inter", ...defaultTheme.fontFamily.sans],
stock: [defaultTheme.fontFamily.sans]
}
},
variants: {
extend: {}
},
plugins: [require("@tailwindcss/aspect-ratio")]
};