From 5b84f648bb894721db13aee2eec2d701a571069a Mon Sep 17 00:00:00 2001 From: Nathan Woodburn Date: Tue, 17 Jun 2025 22:54:10 +1000 Subject: [PATCH] feat: Redo theme --- public/index.html | 92 +++++++++++++++++++++++++++++++++++++++++++++-- public/styles.css | 28 +++++++++------ 2 files changed, 107 insertions(+), 13 deletions(-) diff --git a/public/index.html b/public/index.html index 3ef5ba3..a1f807d 100644 --- a/public/index.html +++ b/public/index.html @@ -6,6 +6,94 @@ Fire Portal +
@@ -24,7 +112,7 @@

Examples:

    -
  • ipfs.act/ - Example Page created by Nathan.Woodburn/
  • +
  • ipfs.act/ - Example Page created by Nathan.Woodburn/
@@ -65,7 +153,7 @@
diff --git a/public/styles.css b/public/styles.css index 2e5caae..82dc6de 100644 --- a/public/styles.css +++ b/public/styles.css @@ -1,10 +1,16 @@ :root { - --primary-color: #ff5722; - --secondary-color: #ffab91; - --dark-color: #212121; - --light-color: #f5f5f5; - --accent-color: #ff9800; + --primary-color: #6E0E9C; + --secondary-color: #9b4dca; + --dark-color: #121212; + --light-color: #e0e0e0; + --accent-color: #6E0E9C; --error-color: #f44336; + --bg-color: #121212; + --card-bg-color: #1e1e1e; + --text-color: #e0e0e0; + --link-color: #9b4dca; + --secondary-text: #aaaaaa; + --border-color: #333333; } * { @@ -16,8 +22,8 @@ body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; line-height: 1.6; - color: var(--dark-color); - background-color: var(--light-color); + color: var(--text-color); + background-color: var(--bg-color); } .container { @@ -37,20 +43,20 @@ header h1 { } section { - background-color: white; + background-color: var(--card-bg-color); border-radius: 8px; padding: 2rem; margin-bottom: 2rem; - box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); + box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3); } h2 { - color: var(--dark-color); + color: var(--primary-color); margin-bottom: 1rem; } h3 { - color: var(--dark-color); + color: var(--primary-color); margin: 1.5rem 0 0.5rem; }