ixtk / snake

classic snake game

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Gameplay Demo

Customize

In run.py:

Change theme (rgb values)

theme = {
    'bg_color': (255, 255, 255),
    'grid_color': (194, 194, 194),
    'food_color': (0, 255, 0),
    'snake_color': (255, 0, 0),
    'font_color': (0, 0, 0)
}

Adjust window (width/height) and cube size, optionally disable grid with grid=False

UI = UserInterface(
    size=(500, 500),
    **theme,
    cube_size=25
)

Run locally

Clone repo

git clone https://github.com/ixtk/snake.git

Install requirements (pygame only)

pip install -r requirements.txt

Run

python run.py

About

classic snake game


Languages

Language:Python 100.0%