aboutsummaryrefslogtreecommitdiff
path: root/gamemode/config
diff options
context:
space:
mode:
authorAlexander Pickering <alexandermpickering@gmail.com>2017-01-04 23:27:36 -0500
committerAlexander Pickering <alexandermpickering@gmail.com>2017-01-04 23:27:36 -0500
commit4879eb1d78520ce0ac9b0bb0ef5244cf65ad7c99 (patch)
treeac47724191a8959c19b2408d4da384d64b6098ec /gamemode/config
parent2c4329e2b6e19182a441f79a5c3010011f8ae767 (diff)
downloadartery-4879eb1d78520ce0ac9b0bb0ef5244cf65ad7c99.tar.gz
artery-4879eb1d78520ce0ac9b0bb0ef5244cf65ad7c99.tar.bz2
artery-4879eb1d78520ce0ac9b0bb0ef5244cf65ad7c99.zip
Started refactoring item and inventory system
Diffstat (limited to 'gamemode/config')
-rw-r--r--gamemode/config/colortheme.lua29
1 files changed, 29 insertions, 0 deletions
diff --git a/gamemode/config/colortheme.lua b/gamemode/config/colortheme.lua
new file mode 100644
index 0000000..ac803cc
--- /dev/null
+++ b/gamemode/config/colortheme.lua
@@ -0,0 +1,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