-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
37 lines (36 loc) · 1 KB
/
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
31
32
33
34
35
36
37
const colors = require("tailwindcss/colors");
const { colors: defaultColors } = require("tailwindcss/defaultTheme");
module.exports = {
content: ["./pages/**/*.{js,ts,jsx,tsx}", "./components/**/*.{js,ts,jsx,tsx}"],
theme: {
fontFamily: {
sans: ['"Epilogue"', "sans-serif"],
poppins: ['"Poppins"', "sans-serif"],
inter: ['"Inter-Roman"', "sans-serif"],
},
extend: {
colors: {
...defaultColors,
gray: colors.neutral,
rose: colors.rose,
fuchsia: colors.fuchsia,
indigo: colors.indigo,
teal: colors.teal,
emerald: colors.emerald,
sky: colors.sky,
lime: colors.lime,
orange: colors.orange,
cyan: colors.cyan,
primary: colors.pink[600],
background: "#181A22",
},
boxShadow: {
homogen: "0 0 10px 3px rgba(0,0,0,0.5)",
},
brightness: {
300: "3",
},
},
},
plugins: [require("@tailwindcss/forms"), require("@tailwindcss/typography")],
};