-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy paththemes.lua
More file actions
329 lines (318 loc) · 8.81 KB
/
Copy paththemes.lua
File metadata and controls
329 lines (318 loc) · 8.81 KB
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
local Themes = {}
-- Color Schemes
Themes.Colors = {
-- Modern Dark theme (sleek dark UI with accent colors)
modern_dark = {
player = {
name = '~b~', -- Blue
id = '~c~', -- Grey
separator = '~s~' -- Default
},
money = {
cash = '~b~', -- Blue
bank = '~b~', -- Blue
currency = '~w~', -- White
separator = '~s~', -- Default
text = '~w~' -- White
},
tabs = {
map = '~b~', -- Blue
status = '~b~', -- Blue
game = '~b~', -- Blue
info = '~b~', -- Blue
settings = '~b~', -- Blue
editor = '~c~', -- Grey
gallery = '~b~' -- Blue
},
job = {
label = '~b~', -- Blue
grade = '~c~', -- Grey
separator = '~s~', -- Default
unemployed = '~c~', -- Grey
employed = '~b~' -- Blue
},
datetime = {
time = '~b~', -- Blue
date = '~c~', -- Grey
separator = '~s~' -- Default
},
server = {
players = '~b~', -- Blue
separator = '~s~', -- Default
ping = {
good = '~b~', -- Blue
medium = '~c~', -- Grey
bad = '~r~' -- Red
}
}
},
-- Neon Cyberpunk theme (vibrant colors with cyber aesthetic)
cyberpunk = {
player = {
name = '~p~', -- Purple
id = '~b~', -- Blue
separator = '~p~' -- Purple
},
money = {
cash = '~p~', -- Purple
bank = '~p~', -- Purple
currency = '~b~', -- Blue
separator = '~p~', -- Purple
text = '~b~' -- Blue
},
tabs = {
map = '~p~', -- Purple
status = '~b~', -- Blue
game = '~p~', -- Purple
info = '~b~', -- Blue
settings = '~p~', -- Purple
editor = '~b~', -- Blue
gallery = '~p~' -- Purple
},
job = {
label = '~p~', -- Purple
grade = '~b~', -- Blue
separator = '~p~', -- Purple
unemployed = '~r~', -- Red
employed = '~p~' -- Purple
},
datetime = {
time = '~p~', -- Purple
date = '~b~', -- Blue
separator = '~p~' -- Purple
},
server = {
players = '~p~', -- Purple
separator = '~p~', -- Purple
ping = {
good = '~p~', -- Purple
medium = '~b~', -- Blue
bad = '~r~' -- Red
}
}
},
-- Professional Light theme (clean and professional look)
professional = {
player = {
name = '~s~', -- Default
id = '~c~', -- Grey
separator = '~c~' -- Grey
},
money = {
cash = '~s~', -- Default
bank = '~s~', -- Default
currency = '~s~', -- Default
separator = '~c~', -- Grey
text = '~s~' -- Default
},
tabs = {
map = '~s~', -- Default
status = '~s~', -- Default
game = '~s~', -- Default
info = '~s~', -- Default
settings = '~s~', -- Default
editor = '~c~', -- Grey
gallery = '~s~' -- Default
},
job = {
label = '~s~', -- Default
grade = '~c~', -- Grey
separator = '~c~', -- Grey
unemployed = '~c~', -- Grey
employed = '~s~' -- Default
},
datetime = {
time = '~s~', -- Default
date = '~c~', -- Grey
separator = '~c~' -- Grey
},
server = {
players = '~s~', -- Default
separator = '~c~', -- Grey
ping = {
good = '~s~', -- Default
medium = '~c~', -- Grey
bad = '~r~' -- Red
}
}
},
-- Minimalist theme (clean and simple)
minimalist = {
player = {
name = '~w~', -- White
id = '~c~', -- Grey
separator = '~c~' -- Grey
},
money = {
cash = '~w~', -- White
bank = '~w~', -- White
currency = '~w~', -- White
separator = '~c~', -- Grey
text = '~w~' -- White
},
tabs = {
map = '~w~', -- White
status = '~w~', -- White
game = '~w~', -- White
info = '~w~', -- White
settings = '~w~', -- White
editor = '~c~', -- Grey
gallery = '~w~' -- White
},
job = {
label = '~w~', -- White
grade = '~c~', -- Grey
separator = '~c~', -- Grey
unemployed = '~c~', -- Grey
employed = '~w~' -- White
},
datetime = {
time = '~w~', -- White
date = '~c~', -- Grey
separator = '~c~' -- Grey
},
server = {
players = '~w~', -- White
separator = '~c~', -- Grey
ping = {
good = '~w~', -- White
medium = '~c~', -- Grey
bad = '~c~' -- Grey
}
}
},
-- Warm theme (warm and inviting colors)
warm = {
player = {
name = '~o~', -- Orange
id = '~y~', -- Yellow
separator = '~o~' -- Orange
},
money = {
cash = '~o~', -- Orange
bank = '~o~', -- Orange
currency = '~o~', -- Orange
separator = '~o~', -- Orange
text = '~y~' -- Yellow
},
tabs = {
map = '~o~', -- Orange
status = '~y~', -- Yellow
game = '~o~', -- Orange
info = '~y~', -- Yellow
settings = '~o~', -- Orange
editor = '~y~', -- Yellow
gallery = '~o~' -- Orange
},
job = {
label = '~o~', -- Orange
grade = '~y~', -- Yellow
separator = '~o~', -- Orange
unemployed = '~r~', -- Red
employed = '~o~' -- Orange
},
datetime = {
time = '~o~', -- Orange
date = '~y~', -- Yellow
separator = '~o~' -- Orange
},
server = {
players = '~o~', -- Orange
separator = '~o~', -- Orange
ping = {
good = '~o~', -- Orange
medium = '~y~', -- Yellow
bad = '~r~' -- Red
}
}
}
}
-- Layout Presets
Themes.Layouts = {
-- Modern layout (clean and spacious with full information)
modern = {
alignment = 'right',
spacing = 2.0,
padding = {
top = 25,
right = 30,
bottom = 25,
left = 30
},
order = {
'datetime',
'player',
'money',
'job',
'server'
}
},
-- Compact layout (condensed with essential info)
compact = {
alignment = 'left',
spacing = 0.5,
padding = {
top = 2,
right = 5,
bottom = 2,
left = 5
},
order = {
'player',
'money',
'server'
}
},
-- Minimal layout (bare essentials only)
minimal = {
alignment = 'right',
spacing = 1.0,
padding = {
top = 10,
right = 15,
bottom = 10,
left = 15
},
order = {
'player',
'money'
}
},
-- Centered layout (balanced design with key info)
centered = {
alignment = 'center',
spacing = 2.5,
padding = {
top = 35,
right = 0,
bottom = 35,
left = 0
},
order = {
'datetime',
'player',
'money',
'server'
}
},
-- Extended layout (comprehensive with all components)
extended = {
alignment = 'left',
spacing = 1.8,
padding = {
top = 20,
right = 40,
bottom = 20,
left = 40
},
order = {
'datetime',
'server',
'player',
'job',
'money'
}
}
}
_G.Themes = Themes -- Make Themes globally accessible
return Themes