-
Notifications
You must be signed in to change notification settings - Fork 6
/
tailwind.config.mjs
62 lines (57 loc) · 1.77 KB
/
tailwind.config.mjs
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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}",
"./node_modules/flowbite/**/*.js",
],
theme: {
fontFamily:{
'sans': 'Montserrat, sans-serif'
},
extend: {
flexBasis: {
'content': 'content',
},
backgroundImage: {
'heroBgImg': 'url("/public/img/SLIDE.webp")',
'heroBgImgService':'url("/public/img/SERVICIOS.webp")',
'weOfferBgServices':'url("/public/img/QUEOFRECEMOS.webp")',
'custom-bg': "url('/public/img/PORTAFOLIO.webp')",
'como-bg':"url('/public/img/COMOFUNCIONA.webp')",
'heroBgImgTeam': 'url("/public/img/EQUIPO.webp")',
'heroBgImgResources': 'url("/public/img/COMOFUNCIONA.webp")',
'contactbg':'url("/public/img/PAGECONTACTO.webp")',
'contact':'url(/public/img/LLAMADA.webp)',
'procesos':'url(/public/img/PROCESOS.webp)',
'proudTeam':'url(/public/img/INCLUSION.webp)'
},
colors: {
"tcf-black": "#232122",
"tcf-black-l": "#474646",
"tcf-cyan": "#A2F2F2",
"tcf-yellow": "#EDF2C2",
"tcf-gray": "#B5B5B5",
"tcf-gray-l": "#F2F2F2",
"tcf-gray-foot":"#535353",
"tcf-blue": "#172554",
"tcf-info": "#D6EBEE",
"tcf-backg": "#0062FF",
"tcf-menu":"#FFFFFF"
},
width:{
"60":"60px",
"57":"57px"
},
animation: {
'openModal': 'openModal 0.5s ease-in-out',
},
keyframes: {
'openModal': {
'0%': { opacity: 0,transform: 'translateY(-100%)' },
'100%': { opacity: 1,transform: 'translateY(0)' },
},
}
}
},
plugins: [require("flowbite/plugin") , require('@tailwindcss/typography')],
}