Sha256: beb3b16bea1686c989bd8aa088d05cc521de4ce804745f9154548ca1e87667cb
Contents?: true
Size: 1.48 KB
Versions: 7
Compression:
Stored size: 1.48 KB
Contents
# Copyright 2016 Ryan Moore # Contact: moorer@udel.edu # # This file is part of Iroki. # # Iroki is free software: you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # Iroki is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with Iroki. If not, see <http://www.gnu.org/licenses/>. module Iroki module Color BASIC = { "1" => "#FF3814", # red "2" => "#712BFF", # blue "3" => "#FFDF14", # yellow "4" => "#14FF63", } # green BASIC_LIGHT = { "1" => "#FF8872", "2" => "#A97FFE", "3" => "#FFEC72", "4" => "#71FEA1", } BASIC_DARK = { "1" => "#FF2800", "2" => "#4901DD", "3" => "#FFDD00", "4" => "#00E24D", } FUNKY = { "1" => "#FF7314", "2" => "#9F23FF", "3" => "#FFF814", "4" => "#14FFD8", } FUNKY_LIGHT = { "1" => "#FFAB72", "2" => "#C57AFE", "3" => "#FFFB72", "4" => "#71FEE6", } FUNKY_DARK = { "1" => "#FF6700", "2" => "#7C01DC", "3" => "#FFF700", "4" => "#00D7B3", } end end
Version data entries
7 entries across 7 versions & 1 rubygems