-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
72 lines (70 loc) · 1.53 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
const { fontFamily } = require("tailwindcss/defaultTheme");
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"src/pages/**/*.{js,ts,jsx,tsx}",
"src/components/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
container: {
center: true,
padding: {
DEFAULT: "1rem",
sm: "2rem",
},
},
backgroundImage: {
mobile: "url(/Footer/mobile.webp)",
desktop: "url(/Footer/desktop.webp)",
subscribeLg: "url(/Home/subscribe-lg.webp)",
cidadaniaPort: "url(/Servicos/bg-banner-vp.webp)",
blog: "url(/Blog/banner-bg.webp)",
cidadaniaItal: "url(/Servicos/bg-banner-ci.webp)",
blog: "url(/Blog/banner-bg.webp)",
},
},
fontFamily: {
sans: ["var(--font-space-grotesk)", ...fontFamily.sans],
},
screens: {
sm: "600px",
md: "728px",
lg: "998px",
xl: "1140px",
},
colors: {
black: {
500: "#000000",
400: "#1D1D1D",
},
gray: {
500: "#313131",
400: "#7676761A",
300: "#777777",
},
white: {
500: "#FFFFFF",
400: "#FAFAFA",
300: "#D9D9D9",
},
green: {
500: "#1E5720",
400: "#E3F1E4",
300: "#608061",
200: "rgba(43, 114, 46, 0.4)",
},
red: {
500: "#8F2929",
400: "#A46767",
},
yellow: {
500: "#F5C731",
},
blue: {
500: "#11569E",
},
},
},
plugins: [],
};