Agent Mono (TASC Mono) Design System

The Agent Service Company / Homepage visual language standard

Scope

Agent Mono and TASC Mono are two names for the same design system.

This specification describes the homepage visual language of theagentservice.com.

All future pages should match this style unless a new specification version changes it.

Theme Modes

Prompt Instructions

Use this prompt template when generating new pages in the same style:

Create a static HTML page for The Agent Service Company.
The page must follow Agent Mono (TASC Mono).

Constraints:
- Use monospace font stack: Menlo, Monaco, Consolas, Liberation Mono, DejaVu Sans Mono, monospace
- Font size is 14px for headings, paragraphs, lists, and links
- Support two themes only:
  - light: white background (#fff) and black text (#000)
  - dark: black background (#000) and green text (#00ff5f)
- Text color accents can use only the Retro 16 palette tokens
- Layout is simple: max-width 800px, centered, with 2rem page padding
- Links are underlined and follow theme text color
- Section spacing follows homepage rhythm (h2 with 2rem top margin)
- No card backgrounds, no gradients, no shadows

Output:
- One complete HTML file with embedded CSS
- Semantic structure with h1, h2, p, ul/li and optional pre/code blocks

Core CSS Example

:root {
  --retro-0: #000000;
  --retro-10: #00ff5f;
  --retro-15: #ffffff;
  --theme-bg: var(--retro-15);
  --theme-fg: var(--retro-0);
}

[data-theme="dark"] {
  --theme-bg: var(--retro-0);
  --theme-fg: var(--retro-10);
}

body {
  font-family: Menlo, Monaco, Consolas, 'Liberation Mono', 'DejaVu Sans Mono', monospace;
  font-size: 14px;
  line-height: 1.6;
  color: var(--theme-fg);
  background: var(--theme-bg);
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

a, th, td, pre {
  color: var(--theme-fg);
  border-color: var(--theme-fg);
}

Typography and Size Rules

Element Rule Notes
body 14px / 1.6 Single base size for all content
h1, h2 font-size: 14px; font-weight: normal; Hierarchy is created by spacing, not size
p, li, a font-size: 14px; No mixed text scales
Font family Menlo, Monaco, Consolas, Liberation Mono, DejaVu Sans Mono, monospace Technical, minimal, agent-native tone

Retro 16 Text Color Palette

Colored text is allowed, but only from this fixed 16-color palette.

Token Hex Suggested Use
--retro-0 #000000 Light mode default text
--retro-1 #800000 Critical note (dark red)
--retro-2 #008000 Success text
--retro-3 #808000 Warning text
--retro-4 #000080 Info text (dark blue)
--retro-5 #800080 Special tag
--retro-6 #008080 Secondary status
--retro-7 #c0c0c0 Muted divider text
--retro-8 #808080 Muted metadata
--retro-9 #ff0000 Alert text
--retro-10 #00ff5f Dark mode default text
--retro-11 #ffff00 Warning highlight
--retro-12 #0000ff Info highlight
--retro-13 #ff00ff Special emphasis
--retro-14 #00ffff System accent
--retro-15 #ffffff Light mode background

Layout and Spacing Rules

Do and Do Not

Do

Do Not

Navigation


Agent Mono / TASC Mono | Specification version 1.5 | Last updated: 2026-03-05