Add basic monochrome popup UI with Tailwind CSS
All checks were successful
check / check (push) Successful in 11s

Black-on-white, monospace, Universal Paperclips aesthetic.
All views: lock, setup/create/import, main account, send,
receive, add token, settings, and approval. Vanilla JS view
switching with stub state. README updated with full UI design
philosophy, external services documentation, and view descriptions.
This commit is contained in:
2026-02-24 10:12:19 +07:00
parent 065f0eaa81
commit d9eda1d503
8 changed files with 1333 additions and 40 deletions

View File

@@ -1,18 +1,18 @@
* {
margin: 0;
padding: 0;
box-sizing: border-box;
@import "tailwindcss";
@theme {
--font-mono:
ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas,
"Liberation Mono", monospace;
--color-bg: #ffffff;
--color-fg: #000000;
--color-muted: #666666;
--color-border: #000000;
--color-border-light: #cccccc;
--color-hover: #eeeeee;
}
body {
width: 360px;
min-height: 600px;
font-family:
-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
background: #1a1a2e;
color: #e0e0e0;
}
#app {
padding: 16px;
}