Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 659 Bytes

README.md

File metadata and controls

32 lines (23 loc) · 659 Bytes

❌ Tic tac toe game ⭕

🎥 Demo

Tic.tac.toe.mp4

🎮 Play

🎨 How to add theme ?

/* script.js */

const COLOR_THEMES = [
    {
        title: 'Strawberry',
        O: ['02AAB0', '00CDAC'],
        X: ['EB3349', 'F45C43'],
        lightTheme: true,
    },
    ...
    {
        title: 'Fahrenheit 451',  // Title of theme
        O: ['fc6076', 'ff9a44'],  // O graident stops
        X: ['fdfcfb', 'e2d1c3'],  // X gradient stops
        lightTheme: false,        // Is it light theme?
    },
]