-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
41 lines (41 loc) · 908 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
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}',
],
theme: {
extend: {
rotate: {
150: '150deg',
},
height: {
50: '12.5rem',
25: '6.25rem',
},
width: {
15.5: '3.875rem',
50: '12.5rem',
25: '6.25rem'
},
colors: {
preBosses: '#ffffff',
preEater: '#5a00ff',
preBrain: '#ff8a86',
preSkeletron: '#bfbfbf',
preWall: '#9d0000',
preMechanical: '#dddddd',
prePlanteraa: '#00a000',
preGolem: '#d16900',
preCultist: '#4343ff',
preMoonLord: '#00b7a5',
preProvidence: '#ffcc01',
prePolterghast: '#97ebff',
preDevourer: '#7f0c92',
preYahron: '#c39700',
preCalamitas: '#fd0000',
endGame: '#00005b',
},
},
},
plugins: [],
};