forked from sunflower-land/sunflower-land
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
62 lines (62 loc) · 1.43 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
53
54
55
56
57
58
59
60
61
62
// eslint-disable-next-line no-undef, @typescript-eslint/no-var-requires
const colors = require("tailwindcss/colors");
// eslint-disable-next-line no-undef
module.exports = {
content: ["./src/**/*.tsx"],
theme: {
fontFamily: {
body: ['"Press Start 2p"'],
},
colors: {
"overlay-white": "rgba(255, 255, 255, 0.5)",
...colors,
},
extend: {
colors: {
green: {
background: "#63c74d",
},
blue: {
300: "#0099da",
600: "#0d87ff",
},
brown: {
100: "#EAD4AA",
200: "#e7a873",
300: "#c28669",
400: "#966953",
600: "#b96f50",
700: "#945542",
},
silver: {
300: "#bfcbda",
},
error: "#e43b44",
},
fontSize: {
xxs: "0.6rem",
},
// This is the height and width of the gameboard
// background image. Only change here when larger size is added.
height: {
gameboard: "4200px",
goblinGameboard: "1600px",
},
width: {
gameboard: "4200px",
goblinGameboard: "3200px",
},
animation: {
float: "floating 3s ease-in-out infinite",
pulsate: "pulsate 1s ease-in-out infinite",
},
dropShadow: {
highlight: [
"1px 1px 0px white",
"-1px 0px 0px white",
"0px -1px 0px white",
],
},
},
},
};