aboutsummaryrefslogtreecommitdiff
path: root/gamemode/config/colortheme.lua
blob: ac803cc945e52d02c2e3a50f4b692014d24131d7 (plain)
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
--[[
	This file needs some text so gmod dosn't throw a fit
]]

local theme = {}

--Not technically correct colors, but they look nice togeather, generated by http://terminal.sexy
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),
}

return theme