From f8e483ba125caaaedf1d555da2eafb45deaaa42e Mon Sep 17 00:00:00 2001 From: Joshua Laymon Date: Sun, 7 Sep 2025 18:12:08 +0000 Subject: [PATCH] Delete web/static/themes/dawn.css --- web/static/themes/dawn.css | 63 -------------------------------------- 1 file changed, 63 deletions(-) delete mode 100644 web/static/themes/dawn.css diff --git a/web/static/themes/dawn.css b/web/static/themes/dawn.css deleted file mode 100644 index 4f50715..0000000 --- a/web/static/themes/dawn.css +++ /dev/null @@ -1,63 +0,0 @@ -/* =============================== - Theme: Dawn (bolder sunrise look) - =============================== */ - -:root { - --bg: #fef9f6; /* very light warm base */ - --card: #ffffff; - --ink: #2c2c2c; /* dark gray text */ - --ink-muted: #6b7280; /* muted gray */ - - --border: #e0d9d5; - - --brand: #e67e5c; /* warm orange */ - --brand-800: #c45d3d; /* darker orange/red */ - - --danger: #c53030; - - --btn-bg: #ffffff; - --btn-border: #e5dedb; - --btn-hover: #f9ece6; -} - -/* ----- Background gradient ----- */ -html[data-theme="dawn"] body { - min-height: 100vh; - background: linear-gradient( - 135deg, - #ffd9a0 0%, /* sunrise peach */ - #ffb6b9 40%, /* rosy pink */ - #a3d5ff 100% /* clear sky blue */ - ); - background-attachment: fixed; - color: var(--ink); -} - -/* Keep cards floating nicely */ -html[data-theme="dawn"] .card, -html[data-theme="dawn"] .result-card, -html[data-theme="dawn"] .search-form, -html[data-theme="dawn"] .form-card { - background: var(--card); - border: 1px solid var(--border); - box-shadow: 0 8px 24px rgba(0,0,0,.06); -} - -/* Translucent topbar over gradient */ -html[data-theme="dawn"] .topbar-wrap { - background: rgba(255, 255, 255, 0.85); - backdrop-filter: blur(6px); - -webkit-backdrop-filter: blur(6px); - border-bottom: 1px solid rgba(229,231,235,.8); -} - -/* Buttons */ -html[data-theme="dawn"] .btn-primary { - background: var(--brand); - border-color: var(--brand); - color: #fff; -} -html[data-theme="dawn"] .btn-primary:hover { - background: var(--brand-800); - border-color: var(--brand-800); -} \ No newline at end of file