// core
InkBlack
PrimaryInk
ActiveText
MidGreen
MutedGreen
PaleGreen
// backgrounds
PageTint
PaperWhite
RaisedSurface
BorderDefault
// accent + semantic
WarningBrown
ErrorRed
InfoTeal
HighlightAmber
LinkBlue
InactiveGray
// usage roles
Ink Black | #1A5216 | Headings, bold labels, emphasis |
Primary Ink | #1E7A14 | Primary text, cursor, key output |
Mid Green | #4A8C3F | Secondary text, active borders |
Muted Green | #7AAB74 | Metadata, comments, captions |
Pale Green | #B8D9B2 | Dividers, decorative borders |
Page Tint | #F0F7EE | Page or terminal background |
Raised Surface | #E4F0E0 | Cards, code blocks, panels |
Warning Brown | #8B5E00 | Warnings, caution notices |
Error Red | #B82222 | Errors, destructive actions |
Info Teal | #006B5A | Info messages, links, system |
// preview
zuanki@pc:~$ ./run_scan.sh --target 192.168.1.0/24
[ OK ] Initializing network interface eth0...
[ -- ] Resolving host table (3/8 complete)...
[ .. ] Background task running in daemon mode
[ WARN ] Port 8080 exposed - no firewall rule matched
[ FAIL ] Connection refused: host 192.168.1.42 unreachable
[ INFO ] Session token refreshed -> eyJhbGc... (valid 3600s)
zuanki@pc :~$
// css
:root {
--bg: #F0F7EE; /* page background */
--bg-raised: #E4F0E0; /* cards, panels */
--green-primary: #1E7A14; /* primary text */
--green-active: #4A8C3F; /* secondary text */
--green-dim: #7AAB74; /* labels, dividers */
--warning: #8B5E00; /* warnings */
--danger: #B82222; /* errors */
--info: #006B5A; /* info, links */
}// core
PurePhosphor
PrimaryGreen
ActiveGreen
MidGreen
DimGreen
ShadowGreen
// backgrounds
TrueBlack
TerminalBlack
RaisedSurface
GhostWhite
// accent + semantic
WarningGold
ErrorRed
InfoCyan
InverseWhite
LimeActive
DeadGray
// usage roles
Pure Phosphor | #00FF00 | Primary text, headings, cursor |
Active Green | #00CC00 | Secondary text, active borders |
Mid Green | #00AA00 | Labels, captions, metadata |
Dim Green | #007700 | Borders, dividers, comments |
Shadow Green | #003300 | Subtle fills, hover backgrounds |
True Black | #000000 | Page background |
Raised Surface | #041A04 | Cards, panels, code blocks |
Warning Gold | #FFD700 | Warnings, alerts |
Error Red | #FF3333 | Errors, destructive actions |
Info Cyan | #00FFCC | Links, info messages, system |
// preview
zuanki@pc:~$ ./run_scan.sh --target 192.168.1.0/24
[ OK ] Initializing network interface eth0...
[ -- ] Resolving host table (3/8 complete)...
[ .. ] Background task running in daemon mode
[ WARN ] Port 8080 exposed - no firewall rule matched
[ FAIL ] Connection refused: host 192.168.1.42 unreachable
[ INFO ] Session token refreshed -> eyJhbGc... (valid 3600s)
zuanki@pc :~$
// css
:root {
--bg: #000000; /* page background */
--bg-raised: #041A04; /* cards, panels */
--green-primary: #00FF00; /* primary text */
--green-active: #00CC00; /* secondary text */
--green-dim: #007700; /* borders, dividers */
--gold: #FFD700; /* warnings */
--red: #FF3333; /* errors */
--cyan: #00FFCC; /* info, links */
}