This commit is contained in:
lifestorm
2024-08-04 23:54:45 +03:00
parent 0e770b2b49
commit df294d03aa
7526 changed files with 4011945 additions and 15 deletions

29
lua/sam/sh_colors.lua Normal file
View File

@@ -0,0 +1,29 @@
--[[
| This file was obtained through the combined efforts
| of Madbluntz & Plymouth Antiquarian Society.
|
| Credits: lifestorm, Gregory Wayne Rossel JR.,
| Maloy, DrPepper10 @ RIP, Atle!
|
| Visit for more: https://plymouth.thetwilightzone.ru/
--]]
if SAM_LOADED then return end
local colors = {
Red = Color(244, 67, 54),
Blue = Color(13, 130, 223),
Green = Color(0, 230, 64),
White = Color(236, 240, 241),
Black = Color(10, 10, 10)
}
function sam.get_color(name)
return colors[name]
end
function sam.add_color(name, color)
if isstring(name) and IsColor(color) then
colors[name] = color
end
end