-
Notifications
You must be signed in to change notification settings - Fork 70
/
Copy pathtailwind.config.js
49 lines (48 loc) · 1.04 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
38
39
40
41
42
43
44
45
46
47
48
49
/** @type {import('tailwindcss').Config} */
// eslint-disable-next-line no-undef
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
theme: {
extend: {
maxWidth: {
"1/2": "50%",
},
screens: {
sm: "480px",
md: "768px",
lg: "976px",
},
fontFamily: {
gothic: ["Libre Franklin", "sans-serif"],
segou: ["Segoe Script", "Georgia"],
caveat: ["Caveat"],
},
fontSize: {
xl: [
"24px",
{
lineHeight: "27.21px",
},
],
},
borderWidth: {
3: "3px",
},
colors: {
darkOlive: "#ACC2A8",
white: "#FFFFFF",
cream: "#FEF5ED",
lilOlive: "#D3E4CD",
brightOlive: "#ADC2A9",
icon1: "#D1D184",
icon2: "#525C52",
icon3: "#DBFBB1",
},
},
},
// eslint-disable-next-line no-undef
plugins: [require("tailwind-scrollbar"), require("tailwind-scrollbar-hide")],
variants: {
scrollbar: ["rounded"],
},
};