-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
29 lines (26 loc) · 902 Bytes
/
tailwind.config.js
File metadata and controls
29 lines (26 loc) · 902 Bytes
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./**/*.{html,js}"],
theme: {
extend: {
backgroundImage:{
'home': "url('/assets/bg.png')",
},
backgroundColor:{
'modal': "rgba(0, 0, 0, 0.7)",
},
},
},
plugins: [],
}
/*
content:
informa ao Tailwind CSS quais arquivos ele deve observar para identificar classes CSS.
No caso, ele está configurado para procurar por arquivos .html e .js dentro do diretório atual e em todos os subdiretórios.
theme:
permite customizar o tema padrão do Tailwind CSS.
A propriedade extend está vazia neste caso, o que significa que nenhum ajuste está sendo feito no tema padrão.
plugins:
permite adicionar plugins adicionais ao Tailwind CSS para estender sua funcionalidade.
Também não há nenhum plugin sendo adicionado nessa configuração.
*/