Files
grungnet/src/helpers/colors.js
T

14 lines
346 B
JavaScript

// Colors used for the game for theme general UI colors look at theme.js
const colors = {
blue: "rgb(26, 106, 255)",
orange: "rgb(255, 116, 51)",
red: "rgb(255, 77, 77)",
purple: "rgb(136, 77, 255)",
green: "rgb(133, 255, 102)",
pink: "rgb(235, 138, 255)",
};
export const colorOptions = Object.keys(colors);
export default colors;