-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
42 lines (41 loc) · 1008 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
const colors = require('tailwindcss/colors')
module.exports = {
purge: {
content: ['./src/**/*.{js,jsx,ts,tsx}', './public/index.html'],
options: {
safelist: [
'bg-Normal', 'bg-Grass', 'bg-Fire', 'bg-Water', 'bg-Bug', 'bg-Flying', 'bg-Poison', 'bg-Ground', 'bg-Electric',
'bg-Rock', 'bg-Psychic', 'bg-Ghost', 'bg-Ice', 'bg-Dragon', 'bg-Steel', 'bg-Dark', 'bg-Fighting', 'bg-Fairy'
]
}
},
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
colors: {
Normal: '#9aa',
Grass: '#6c6',
Fire: '#fa5',
Water: '#59d',
Bug: '#9c3',
Flying: '#9be',
Poison: '#b7d',
Ground: '#e74',
Electric: '#fd4',
Rock: '#cb9',
Psychic: '#f77',
Ghost: '#57b',
Ice: '#7dc',
Dragon: '#17c',
Steel: '#69a',
Dark: '#656',
Fighting: '#d47',
Fairy: '#f9e'
}
},
},
variants: {
extend: {},
},
plugins: [],
}