--[[ 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), } theme.ui = { border = Color(113,113,113) } return theme