📄 playerColors.js
/home/palash/git/site/src/components/tic-tac-slide/playerColors.js
Language: js • Lines: 28
const allColors = [
    {
        name: "Red",
        val: "#FF6347"
    },
    {
        name: "Blue",
        val: "#4682B4"
    },
    {
        name: "Yellow",
        val: "#FFD700"
    },
    {
        name: "Green",
        val: "#32CD32"
    },
    {
        name: "Purple",
        val: "#9966CC"
    },
    {
        name: "Pink",
        val: "#CC9F9F"
    }
];

export default allColors;