init chaos theory theme for foxhop.net

Dark void background with dot-grid overlay, electric teal accent,
Space Mono typography. Remarkbox entry point: chaostheory.
This commit is contained in:
russell@unturf.com 2026-04-03 10:54:10 -04:00
commit 5722b6c7b0
6 changed files with 422 additions and 0 deletions

31
setup.py Normal file
View file

@ -0,0 +1,31 @@
# A Remarkbox theme is a python package with the following paths:
#
# templates/<theme_name>-base.j2
# static/theme/<theme_name>/
#
# Register to 'remarkbox.themes' entry_point group to load in Remarkbox.
from setuptools import setup, find_packages
setup(
name='remarkbox_chaostheory',
version='0.1.0',
description='remarkbox chaos theory theme — foxhop.net',
classifiers=[
"Programming Language :: Python",
"Framework :: Pyramid",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
],
author='fox',
url='https://foxhop.net',
keywords='remarkbox chaostheory theme foxhop',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
entry_points={
'remarkbox.themes': [
'chaostheory = remarkbox_chaostheory',
],
},
)