-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.js
More file actions
30 lines (30 loc) · 860 Bytes
/
tailwind.config.js
File metadata and controls
30 lines (30 loc) · 860 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
30
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
fontFamily: {
league: ['League Spartan', 'sans-serif'],
poppins: ['Poppins', 'sans-serif']
},
colors: {
sand: '#E5CBA8',
'blue-primary': '#0080F5',
'blue-secondary': '#090CE8',
'blue-tertiary': '#1011A6',
yellow: '#b3bd2d',
'yellow-secondary': '#a0a823',
'grey-primary': '#999999',
'grey-secondary': '#656565',
'grey-tertiary': '#c4c4c4',
'white-primary': '#cccccc'
},
backgroundImage: {
campo: "url('../assets/imagem-campo.png')",
quadra: "url('../assets/maua3.1.png')",
atividadesLivre: "url('../assets/imagem-beachtenis.png')"
}
}
},
plugins: []
}