Skip to content

Instantly share code, notes, and snippets.

View skorphil's full-sized avatar
🐙

Philipp Rich skorphil

🐙
View GitHub Profile
@skorphil
skorphil / theme.json
Created January 26, 2024 11:51
Chakra UI default theme object
{
"semanticTokens": {
"colors": {
"chakra-body-text": {
"_light": "gray.800",
"_dark": "whiteAlpha.900"
},
"chakra-body-bg": {
"_light": "white",
"_dark": "gray.800"
@skorphil
skorphil / snake.py
Last active May 6, 2021 12:26 — forked from sanchitgangwar/snake.py
Snakes Game using Python
# SNAKES GAME
# Use ARROW KEYS to play, SPACE BAR for pausing/resuming and Esc Key for exiting
import curses
from curses import KEY_RIGHT, KEY_LEFT, KEY_UP, KEY_DOWN
from random import randint
curses.initscr()
win = curses.newwin(20, 60, 0, 0)