-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
46 lines (44 loc) · 978 Bytes
/
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
38
39
40
41
42
43
44
45
46
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
width: {
'90p': '90%',
'svgWH': '25px',
'image': '90px',
'imageDetails': '200px',
'mainH': '30px'
},
colors: {
'default': '#0f172a',
'white': '#ffffff',
'black': '#020617',
'h3': '#111827',
'card': '#94a3b8',
'green': '#16a34a',
'all': '#020617',
'water': '#5090D6',
'dragon': '#0B6DC3',
'electric': '#F4D23C',
'fairy': '#EC8FE6',
'ghost': '#5269AD',
'fire': '#FF9D55',
'ice': '#73CEC0',
'grass': '#63BC5A',
'bug': '#91C12F',
'fighting': '#CE416B',
'normal': '#919AA2',
'dark': '#5A5465',
'steel': '#5A8EA2',
'rock': '#C5B78C',
'psychic': '#FA7179',
'ground': '#D97845',
'poison': '#B567CE',
'flying': '#89AAE3'
},
},
plugins: [],
}