bc20045705
Now there wont be two "kingdoms_game"folders
66 lines
2.4 KiB
Lua
66 lines
2.4 KiB
Lua
--[[
|
|
Copyright (c) 2015, Robert 'Bobby' Zenz
|
|
All rights reserved.
|
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
modification, are permitted provided that the following conditions are met:
|
|
|
|
* Redistributions of source code must retain the above copyright notice, this
|
|
list of conditions and the following disclaimer.
|
|
|
|
* Redistributions in binary form must reproduce the above copyright notice,
|
|
this list of conditions and the following disclaimer in the documentation
|
|
and/or other materials provided with the distribution.
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
--]]
|
|
|
|
|
|
--- The tango color scheme.
|
|
tango = {}
|
|
|
|
tango.aluminium_1 = Color:new(238, 238, 238)
|
|
tango.aluminium_2 = Color:new(211, 215, 207)
|
|
tango.aluminium_3 = Color:new(186, 189, 182)
|
|
tango.aluminium_4 = Color:new(136, 138, 133)
|
|
tango.aluminium_5 = Color:new(85, 87, 83)
|
|
tango.aluminium_6 = Color:new(46, 52, 54)
|
|
|
|
tango.butter_1 = Color:new(252, 233, 79)
|
|
tango.butter_2 = Color:new(237, 212, 0)
|
|
tango.butter_3 = Color:new(196, 160, 0)
|
|
|
|
tango.orange_1 = Color:new(252, 175, 62)
|
|
tango.orange_2 = Color:new(245, 121, 0)
|
|
tango.orange_3 = Color:new(206, 92, 0)
|
|
|
|
tango.chocolate_1 = Color:new(233, 185, 110)
|
|
tango.chocolate_2 = Color:new(193, 125, 17)
|
|
tango.chocolate_3 = Color:new(143, 89, 2)
|
|
|
|
tango.chameleon_1 = Color:new(138, 226, 52)
|
|
tango.chameleon_2 = Color:new(115, 210, 22)
|
|
tango.chameleon_3 = Color:new(78, 154, 6)
|
|
|
|
tango.skyblue_1 = Color:new(114, 159, 207)
|
|
tango.skyblue_2 = Color:new(52, 101, 164)
|
|
tango.skyblue_3 = Color:new(32, 74, 135)
|
|
|
|
tango.plum_1 = Color:new(173, 127, 168)
|
|
tango.plum_2 = Color:new(117, 80, 123)
|
|
tango.plum_3 = Color:new(92, 53, 102)
|
|
|
|
tango.scarletred_1 = Color:new(239, 41, 41)
|
|
tango.scarletred_2 = Color:new(204, 0, 0)
|
|
tango.scarletred_3 = Color:new(164, 0, 0)
|
|
|