-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.cjs
64 lines (62 loc) · 1.65 KB
/
tailwind.config.cjs
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
/** @type {import('tailwindcss').Config} */
const plugin = require("tailwindcss/plugin");
module.exports = {
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
theme: {
extend: {
flex: {
'2': '2 2 0%',
'3': '3 3 0%',
},
backgroundImage: {
hero: "url('/hero.webp')",
aboutHero: "url('/about-hero.webp')",
main: "url('/Background.webp')",
about: "url('/aboutpage-bg.webp')",
services: "url('/servicespage-bg.webp')",
contact: "url('/contactpage-bg.webp')",
},
fontFamily: {
dm: ["DM Serif Display", "serif"],
jost: ["Jost", "sans-serif"], // Ensure fonts with spaces have " " surrounding it.
},
colors: {
// Configure your color palette here
primary: {
100: "#FFC106", //letras de abajo
200: "#FBFBFB", //letras general
300: "#FFC106", //fondos
400: "#FF8200",
500: "#FFD967", //fondo claro
},
text: {
blue: "#1B2534",
gray: "#4D4F52",
"gray-100": "#5F5F5F",
"gray-200": "#4D5053",
"gray-300": "#E5E5E5",
},
},
},
},
plugins: [
plugin(function ({ addUtilities }) {
addUtilities({
".center": {
display: "flex",
"justify-content": "center",
"align-items": "center",
},
".startCenter": {
display: "flex",
"align-items": "center",
},
".btwn": {
display: "flex",
"justify-content": "space-between",
"align-items": "center",
},
});
}),
],
};