diff --git a/scripts/build.py b/scripts/build.py index 5e561c4..b64749a 100755 --- a/scripts/build.py +++ b/scripts/build.py @@ -102,15 +102,15 @@ HTML_TEMPLATE = """ """ -# Page background colors +# Page background colors (muted primary and secondary colors) PAGE_COLORS = { - 'comics': '#ffffff', - 'about': '#f5e6d3', - 'projects': '#e8dfd0', - 'links': '#d9e8d8', - 'contact': '#e8d8d8', - 'now': '#d8e3e8', - 'uses': '#e8e0d8', + 'about': '#f5e3d9', # muted peach + 'comics': '#e3d9f5', # muted lavender + 'projects': '#f5f5d9', # muted yellow + 'links': '#d9f5e3', # muted teal + 'contact': '#f5d9d9', # muted coral + 'now': '#d9e3f5', # muted blue + 'uses': '#f5dfe3', # muted peach-pink }