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
|
---Holds color config for various bits and peices in artery.
-- Feel free to change these I guess.
--@shared colortheme.lua
--[[
This file needs some text so gmod dosn't throw a fit
]]
local theme = {}
---Colors used for console print functions.
-- Not technically correct colors, but they look nice togeather. Generated by http://terminal.sexy
--@export
theme.console = {
background = Color(254,249,236),
foreground = Color(109,114,126),
gray = Color(197,193,180),
gray_bold = Color(161,166,178),
red = Color(231,92,88),
red_bold = Color(178,43,49),
green = Color(0,162,80),
green_bold = Color(0,116,39),
yellow = Color(160,138,0),
yellow_bold = Color(113,95,0),
blue = Color(32,143,251),
blue_bold = Color(0,101,202),
magenta = Color(209,96,196),
magenta_bold = Color(160,49,150),
cyan = Color(0,164,193),
cyan_bold = Color(0,118,147),
black = Color(62,66,77),
black_bold = Color(40,44,54),
}
theme.ui = {
border = Color(113,113,113)
}
return theme
|