-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
40 lines (39 loc) · 955 Bytes
/
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
38
39
40
const { addDynamicIconSelectors } = require("@iconify/tailwind");
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
customRed: {
50: "#fff2ed",
100: "#ffe2d4",
200: "#ffc0a8",
300: "#ff9471",
400: "#ff5d38",
500: "#fe3311",
600: "#ef1a07",
700: "#c60d08",
800: "#9d0f11",
900: "#7e1011",
950: "#440609",
},
},
boxShadow: {
small: "0 5px 10px rgba(0, 0, 0, 0.12)",
medium: "0 8px 30px rgba(0, 0, 0, 0.12)",
},
fontFamily: {
serif: ["var(--font-charter)", "serif"],
sans: ["var(--font-franklin)", "sans-serif"],
},
},
},
plugins: [
require("@tailwindcss/typography"),
addDynamicIconSelectors(),
],
};