-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
42 lines (41 loc) · 909 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
41
42
module.exports = {
darkMode: "class",
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
"./sections/**/*.{js,ts,jsx,tsx}",
],
theme: {
screens: {
xs: "480px",
sm: "640px",
md: "768px",
lg: "976px",
xl: "1440px",
},
fontFamily: {
sans: ['"Jost"', "sans-serif"],
},
extend: {
colors: {
bglight: "#F9FAFB",
marrslight: "#1C9A9A",
marrsgreen: "#007A7A",
marrsdark: "#004D4D",
cardlight: "#EFF3F3",
// bgdark: "#2D2D2D",
bgdark: "#1D2A35",
carrilight: "#57DCB4",
carrigreen: "#05CE91",
carridark: "#00835B",
// carddark: "#383838",
carddark: "#22323F",
textlight: "#F9FAFB",
},
},
},
plugins: [
require("@tailwindcss/typography"),
require("@tailwindcss/line-clamp"),
],
};