-
Notifications
You must be signed in to change notification settings - Fork 3
/
tailwind.config.js
53 lines (53 loc) · 1.24 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
50
51
52
53
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
container: {
center: true,
screens: {
sm: "100%",
md: "100%",
lg: "1024px",
xl: "1100px",
},
},
extend: {
colors: {
primary: "#234F8C",
secondary: "#274368",
ascent: "#FF922B",
"primary-100": "#E2EEFF",
"primary-200": "#AAC7F0",
"primary-300": "#8AB2EB",
"primary-400": "#4C7DC2",
"ascent-light": "#FCB777",
"ascent-light-100": "#FAE1CA",
"ascent-light-200": "#FCD4AE",
"ascent-dark": "#5A3008",
"ascent-100": "#FFD9B5",
"ascent-200": "#FFAE62",
color1: "#727375",
color2: "#EDEDED",
color3: "#D9DFE7",
color4: "#E6E2E1",
color5: "#C7C6BE",
},
fontFamily: {
brand: ["nunito", "helvetica", "sans-serif"],
},
},
},
variants: {
extend: {},
},
plugins: [
require("@tailwindcss/line-clamp"),
require("@tailwindcss/typography"),
require("@tailwindcss/forms"),
require("@tailwindcss/aspect-ratio"),
require("tailwindcss-question-mark"),
require("tailwind-scrollbar"),
],
};