Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
TheLazySquid
GitHub Repository: TheLazySquid/GimkitCheat
Path: blob/main/src/hud/defaultVars.ts
8160 views
1
import type { IMenuTransform } from "../types"
2
3
export const defaultCss = {
4
textColor: "rgba(255, 255, 255, 1)",
5
menuBackgroundColor: "rgba(0, 0, 0, 0.5)",
6
menuOutlineColor: "rgba(255, 255, 255, 0)",
7
menuHeaderBackgroundColor: "rgba(0, 0, 255, 0.5)",
8
menuHeaderTextColor: "rgba(255, 255, 255, 1)",
9
buttonBackgroundColor: "rgba(0, 0, 0, 0.5)",
10
buttonBorderColor: "rgba(255, 255, 255, 1)"
11
}
12
13
export const defaultMenuTransforms: Record<string, IMenuTransform> = {
14
"General Cheats": {
15
x: 0,
16
y: 0,
17
width: window.innerWidth / 4,
18
height: window.innerHeight / 3 * 2,
19
minimized: false
20
},
21
"Gamemode Specific Cheats": {
22
x: window.innerWidth / 8 * 3,
23
y: 0,
24
width: window.innerWidth / 4,
25
height: window.innerHeight / 3 * 2,
26
minimized: false
27
},
28
"Customization": {
29
x: window.innerWidth / 4 * 3,
30
y: 0,
31
width: window.innerWidth / 4,
32
height: window.innerHeight / 3 * 2,
33
minimized: false
34
}
35
}
36