mirror of
https://github.com/mgeeky/decode-spam-headers.git
synced 2026-02-22 13:33:30 +01:00
MAESTRO: apply dark hacker palette
This commit is contained in:
@@ -42,9 +42,10 @@ Note: `npx vitest run src/__tests__/AnalyseButton.test.tsx` passes; Vitest emits
|
|||||||
- [x] User can drop an EML/TXT file and see it auto-populate the input
|
- [x] User can drop an EML/TXT file and see it auto-populate the input
|
||||||
- [x] Analyse button is disabled when input is empty
|
- [x] Analyse button is disabled when input is empty
|
||||||
- [x] Ctrl+Enter keyboard shortcut triggers the analyse action
|
- [x] Ctrl+Enter keyboard shortcut triggers the analyse action
|
||||||
- [ ] Dark hacker theme is visible with correct colour palette
|
- [x] Dark hacker theme is visible with correct colour palette
|
||||||
- [ ] Validation shows user-friendly errors for empty and oversized input
|
- [ ] Validation shows user-friendly errors for empty and oversized input
|
||||||
- [ ] `npx eslint src/` and `npx prettier --check src/` pass with zero errors
|
- [ ] `npx eslint src/` and `npx prettier --check src/` pass with zero errors
|
||||||
- [ ] Run `/speckit.analyze` to verify consistency
|
- [ ] Run `/speckit.analyze` to verify consistency
|
||||||
|
|
||||||
Note: Wired `FileDropZone` into the main page to populate the header input state on drop.
|
Note: Wired `FileDropZone` into the main page to populate the header input state on drop.
|
||||||
|
Note: Applied the dark hacker palette globally via `frontend/src/app/globals.css`.
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
@import "tailwindcss";
|
@import "tailwindcss";
|
||||||
|
|
||||||
:root {
|
:root {
|
||||||
--background: #ffffff;
|
--background: #1e1e2e;
|
||||||
--foreground: #171717;
|
--foreground: #f8f8f2;
|
||||||
}
|
}
|
||||||
|
|
||||||
@theme inline {
|
@theme inline {
|
||||||
@@ -12,15 +12,8 @@
|
|||||||
--font-mono: var(--font-geist-mono);
|
--font-mono: var(--font-geist-mono);
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (prefers-color-scheme: dark) {
|
|
||||||
:root {
|
|
||||||
--background: #0a0a0a;
|
|
||||||
--foreground: #ededed;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
body {
|
body {
|
||||||
background: var(--background);
|
background: var(--background);
|
||||||
color: var(--foreground);
|
color: var(--foreground);
|
||||||
font-family: Arial, Helvetica, sans-serif;
|
font-family: var(--font-geist-sans), ui-sans-serif, system-ui, sans-serif;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user