-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtailwind.config.js
More file actions
32 lines (32 loc) · 881 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
32 lines (32 loc) · 881 Bytes
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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
'mc-green': '#55FF55',
'mc-dark-green': '#00AA00',
'mc-dirt': '#8B4513',
'mc-stone': '#808080',
'mc-grass': '#7CFC00',
'mc-wood': '#DEB887',
'mc-water': '#0000AA',
'mc-gold': '#FFAA00',
'mc-border': '#373737',
'mc-ui': '#C6C6C6',
},
fontFamily: {
'pixel': ['"Press Start 2P"', 'cursive'],
'sans': ['Inter', 'system-ui', 'sans-serif'],
},
boxShadow: {
'mc': 'inset -4px -4px 0px 0px #555, inset 4px 4px 0px 0px #FFF, 0px 4px 0px 0px #000',
'mc-active': 'inset 4px 4px 0px 0px #555, inset -4px -4px 0px 0px #FFF, 0px 4px 0px 0px #000',
}
},
},
plugins: [],
}