💄 update base bg colors

This commit is contained in:
mi
2025-11-20 20:34:43 +10:00
parent ea7688016a
commit 44cb4045ba

View File

@@ -102,15 +102,15 @@ HTML_TEMPLATE = """<!DOCTYPE html>
</html> </html>
""" """
# Page background colors # Page background colors (muted primary and secondary colors)
PAGE_COLORS = { PAGE_COLORS = {
'comics': '#ffffff', 'about': '#f5e3d9', # muted peach
'about': '#f5e6d3', 'comics': '#e3d9f5', # muted lavender
'projects': '#e8dfd0', 'projects': '#f5f5d9', # muted yellow
'links': '#d9e8d8', 'links': '#d9f5e3', # muted teal
'contact': '#e8d8d8', 'contact': '#f5d9d9', # muted coral
'now': '#d8e3e8', 'now': '#d9e3f5', # muted blue
'uses': '#e8e0d8', 'uses': '#f5dfe3', # muted peach-pink
} }