This repository has been archived on 2021-07-14. You can view files and clone it, but cannot push or open issues or pull requests.
scriptcraft/src/main/js/modules/block-colors.js
2015-05-24 12:18:00 +01:00

20 lines
246 B
JavaScript

var colors = {
white: 0,
orange: 1,
magenta: 2,
lightblue: 3,
yellow: 4,
lime: 5,
pink: 6,
gray: 7,
lightgray: 8,
cyan: 9,
purple: 10,
blue: 11,
brown: 12,
green: 13,
red: 14,
black: 15
};
module.exports = colors;