forked from DenLopes/Minesweeper-win98-vue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.cjs
43 lines (43 loc) · 1.26 KB
/
tailwind.config.cjs
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./index.html",
"./src/**/*.{vue,js,ts,jsx,tsx}",
],
theme: {
extend: {
width: {
'37': '147px',
'54.5': '217px'
},
height: {
'37': '148px',
'54.5': '218px'
},
scale: {
'175': '1.75',
},
boxShadow: {
'in': '-1px -1px #818181, -1px 0 #818181, 0 -1px #818181, 1px 1px white, 0 1px white, 1px 0 white, 1px -1px white, -1px 1px white',
'window': '-1px -1px white, -1px 0 white, 0 -1px white, -2px -2px #c3c3c3, -2px 0 #c3c3c3, 0 -2px #c3c3c3, 1px 1px #818181, 0 1px #818181, 1px 0 #818181, 1px -1px #818181, -1px 1px #818181, -2px 1px #c3c3c3, -2px 2px black, 2px 2px black, 2px 0 black, 0 2px black, 1px -2px #c3c3c3, 2px -2px black',
},
colors: {
'gray-win': '#c3c3c3',
'dark-gray-win': '#818181',
'blue-win': '#010081',
'win-bg': '#008080',
},
fontFamily: {
retrobold: ["Retro-win-bold", "sans-serif"],
retro: ["Retro-win", "sans-serif"],
},
fontSize: {
smallest: ['11px', '16px'],
},
backgroundImage: {
'display' : "url('../src/assets/img/display.png')"
},
},
},
plugins: [],
}