-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
33 lines (33 loc) · 854 Bytes
/
tailwind.config.js
File metadata and controls
33 lines (33 loc) · 854 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
31
32
33
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{html,js}",
"./public/**/*.{html,js}"
],
theme: {
extend: {
fontFamily: {},
fontSize: {},
backgroundImage: {
'sofifa-field': "url('/public/assets/img/field.webp')",
},
colors: {
'sofifa-bg': '#212529',
'sofifa-nav-bg': '#2e3237',
'sofifa-sub-bg': '#292d32',
'sofifa-text-a': '#ced4da',
'sofifa-text-b': '#868e95',
'sofifa-text-c': '#cac3c3',
'sofifa-ovr-a': '#12843f',
'sofifa-ovr-b': '#67a72b',
'sofifa-ovr-c': '#e5b533',
'sofifa-ovr-d': '#d85d26',
'sofifa-pos-gk': '#c8292b',
'sofifa-pos-df': '#d85d26',
'sofifa-pos-mf': '#2d8944',
'sofifa-pos-at': '#679ffa',
},
},
},
plugins: [],
}