InfOS/Programs/config/colors.lua
Gabriel Moreira Minossi 2ea5af43ae Restructuring directories
Changing file locations
Adding directory structure to imports
Renaming update.lua to setup.lua
Adding symlinking to setup.lua
2020-12-31 16:38:19 -03:00

38 lines
968 B
Lua

local colors = {
red = 0xFF0000,
lime = 0x00FF00,
blue = 0x0000FF,
magenta = 0xFF00FF,
yellow = 0xFFFF00,
cyan = 0x00FFFF,
green = 0x008000,
purple = 0x800080,
brown = 0xA52A2A,
steelBlue = 0x4682B4,
chocolate = 0xD2691E,
lightGray = 0xD3D3D3,
darkGray = 0xA9A9A9,
rosyBrown = 0xBC8F8F,
white = 0xFFFFFF,
black = 0x000000,
darkSlateGrey = 0x2F4F4F,
machineBackground = colors.darkGray,
progressBackground = colors.lightGray,
labelColor = colors.chocolate,
errorColor = colors.red,
idleColor = colors.purple,
workingColor = colors.steelBlue,
positiveEUColor = colors.lime,
negativeEUColor = colors.brown,
timeColor = colors.purple,
textColor = colors.black,
hudColor = colors.darkSlateGrey,
mainColor = colors.rosyBrown,
background = colors.black,
accentA = colors.cyan,
accentB = colors.magenta,
barColor = colors.blue
}
return colors