forked from MekaAuto/MekaAuto-Front
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
37 lines (36 loc) · 1.13 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
/* eslint-disable no-undef */
/** @type {import('tailwindcss').Config} */
export default {
content: [
'./index.html',
'./src/**/*.{vue,js,ts,jsx,tsx}',
'./node_modules/tw-elements/dist/js/**/*.js'
],
theme: {
extend: {
backgroundImage: {
'car-login': "url('assets/sedan-lujo-rojo-carretera.jpg')",
'carros': "url('img/carro/carro3.jpeg)",
'motos': "url('img/moto/moto11.jpg)",
'camiones': "url('img/camione/camione1.png)"
},
fontFamily: {
roboto: ['Roboto'],
nunito: ['Nunito'],
montserrat: ['Monserrat'],
arial: ['Arial'],
nunito2: ['Nunito,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol,"Noto Color Emoji"']
},
gridTemplateColumns: {
gallery: 'repeat(auto-fill, minmax(350px, 1fr))',
gallery1: 'repeat(auto-fill, minmax(500px, 1fr))'
},
colors: {
'h4': '#3a3b45',
},
}
},
plugins: [require('@tailwindcss/forms'),
require('tw-elements/dist/plugin.cjs')],
darkMode: 'class'
};