Skip to content

Commit

Permalink
use consistent indentation and js conventions
Browse files Browse the repository at this point in the history
  • Loading branch information
danprince committed Aug 25, 2015
1 parent 2a2f30a commit 137e36e
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions js/colors.js
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
(function() {
var colors = {
aqua: "#7FDBFF",
blue: "#0074D9",
lime: "#01FF70",
navy: "#001F3F",
teal: "#39CCCC",
olive: "#3D9970",
green: "#2ECC40",
red: "#FF4136",
maroon: "#85144B",
orange: "#FF851B",
purple: "#B10DC9",
yellow: "#FFDC00",
fuchsia: "#F012BE",
gray: "#aaa",
white: "#fff",
black: "#111",
silver: "#ddd"
aqua: '#7fdbff',
blue: '#0074d9',
lime: '#01ff70',
navy: '#001f3f',
teal: '#39cccc',
olive: '#3d9970',
green: '#2ecc40',
red: '#ff4136',
maroon: '#85144b',
orange: '#ff851b',
purple: '#b10dc9',
yellow: '#ffdc00',
fuchsia: '#f012be',
gray: '#aaaaaa',
white: '#ffffff',
black: '#111111',
silver: '#dddddd'
};

if(typeof module !== "undefined" && typeof module.exports !== "undefined") {
if(typeof module !== 'undefined' && typeof module.exports !== 'undefined') {
module.exports = colors;
} else {
window.colors = colors;
Expand Down

0 comments on commit 137e36e

Please sign in to comment.