-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
56 lines (56 loc) · 1.55 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{js,jsx,ts,tsx,svg}'],
theme: {
extend: {
colors: {
type: {
bug: '#A2A329',
dark: '#4E4646',
dragon: '#5871BD',
electric: '#E2BE2A',
fairy: '#E28EE3',
fighting: '#E39423',
fire: '#E5633F',
flying: '#77AFD4',
ghost: '#6C456E',
grass: '#49983A',
ground: '#A6753B',
ice: '#4CCBC8',
normal: '#848383',
poison: '#9556CB',
psychic: '#EA708A',
rock: '#AFA781',
steel: '#6EB0C7',
water: '#339DDF',
},
custom: {
green: '#65D077',
yellow: '#FFCB03',
brown: '#A16C41',
},
},
gridTemplateColumns: {
18: 'repeat(18, minmax(0, 1fr))',
15: 'repeat(15, minmax(0, 1fr))',
list: 'repeat(auto-fill, 8rem)',
'list-mobile': 'repeat(auto-fill, 30%)',
},
boxShadow: {
'list-items': 'rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px',
'list-items--hover': 'rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px',
navigation: 'rgba(101, 208, 119, 0.6) 0px -4px',
},
keyframes: {
wiggle: {
'0%, 100%': { transform: 'scale(1)', opacity: 1 },
'50%': { transform: 'scale(1.1)', opacity: 0.8 },
},
},
animation: {
wiggle: 'wiggle 6s ease-in-out infinite',
},
},
},
plugins: [],
};