-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
52 lines (52 loc) · 1.46 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{js,jsx,ts,tsx}', './node_modules/flowbite/**/*.{js,jsx,ts,tsx}'],
theme: {
extend: {
colors: {
primary: '#071D3F',
secondary: '#FFCC02',
scarlet: '#FA5C32',
violet: '#A477E8',
custom: {
red: '#DB2E2C',
green: '#4DB040',
blue: '#0E90D3',
orange: '#FC8002',
gold: '#A29834',
lightgrey: '#FCFAF7',
},
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',
},
},
gridTemplateColumns: {
18: 'repeat(18, minmax(0, 1fr))',
list: 'repeat(auto-fill, 180px)',
'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',
},
},
},
plugins: [require('flowbite/plugin')],
};