85 lines
2.4 KiB
Lua
85 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 = {
|
|
ALUMINIUM_1 = Color:new(238, 238, 238),
|
|
|
|
ALUMINIUM_2 = Color:new(211, 215, 207),
|
|
|
|
ALUMINIUM_3 = Color:new(186, 189, 182),
|
|
|
|
ALUMINIUM_4 = Color:new(136, 138, 133),
|
|
|
|
ALUMINIUM_5 = Color:new(85, 87, 83),
|
|
|
|
ALUMINIUM_6 = Color:new(46, 52, 54),
|
|
|
|
BUTTER_1 = Color:new(252, 233, 79),
|
|
|
|
BUTTER_2 = Color:new(237, 212, 0),
|
|
|
|
BUTTER_3 = Color:new(196, 160, 0),
|
|
|
|
CHAMELEON_1 = Color:new(138, 226, 52),
|
|
|
|
CHAMELEON_2 = Color:new(115, 210, 22),
|
|
|
|
CHAMELEON_3 = Color:new(78, 154, 6),
|
|
|
|
CHOCOLATE_1 = Color:new(233, 185, 110),
|
|
|
|
CHOCOLATE_2 = Color:new(193, 125, 17),
|
|
|
|
CHOCOLATE_3 = Color:new(143, 89, 2),
|
|
|
|
ORANGE_1 = Color:new(252, 175, 62),
|
|
|
|
ORANGE_2 = Color:new(245, 121, 0),
|
|
|
|
ORANGE_3 = Color:new(206, 92, 0),
|
|
|
|
PLUM_1 = Color:new(173, 127, 168),
|
|
|
|
PLUM_2 = Color:new(117, 80, 123),
|
|
|
|
PLUM_3 = Color:new(92, 53, 102),
|
|
|
|
SCARLETRED_1 = Color:new(239, 41, 41),
|
|
|
|
SCARLETRED_2 = Color:new(204, 0, 0),
|
|
|
|
SCARLETRED_3 = Color:new(164, 0, 0),
|
|
|
|
SKYBLUE_1 = Color:new(114, 159, 207),
|
|
|
|
SKYBLUE_2 = Color:new(52, 101, 164),
|
|
|
|
SKYBLUE_3 = Color:new(32, 74, 135)
|
|
}
|
|
|