Style Catalog/Blueprint

Blueprint

工程蓝图

D
50/100Poor
Rate this style

Engineering blueprint and technical drawing style with white lines on blue, grid coordinates, annotation lines, and dimension markers. Ideal for architecture, engineering, tech, and education.

blueprintblueprint uiengineering drawingtechnical drawingcyanotypeschematicdraftinggrid coordinatesannotation linesarchitecture website
View Full Showcase →
Templates

Best For

blueprint / blueprint ui / engineering drawing

Primary Move

Use blueprint blue bg-[#1e3a5f] for backgrounds paired with grid line background effects

Watch Out

Do not use warm-toned backgrounds

AI Implementation

Copy the Hard Prompt first, then use the spec when needed

Use the Hard Prompt by default to generate UI. Use the Design Spec to understand, modify, and review the style. Use the Creative Brief for early exploration.

Hard Prompt

Use this by default: copy it, append the concrete requirement, and let AI generate consistent production UI.

When to use

  • When AI should generate UI directly
  • When repeated outputs must stay consistent
  • When style drift is the main risk

How to use

  • Copy the full prompt
  • Append the concrete requirement
  • Review against forbidden rules and UI states
STYLEKIT_STYLE_REFERENCE
style_name: Blueprint
style_slug: blueprint
style_source: /styles/blueprint

# Hard Prompt

## When To Use
Use this when you want AI to generate code with strict style consistency. It is the safest default for production UI.

## How To Use
- Copy the full prompt into ChatGPT, Claude, Cursor, or another coding assistant.
- Append the concrete product/page requirement after the prompt.
- After generation, check the forbidden rules and interaction states before accepting the output.

Strictly follow the style rules below and maintain consistency. No style drift allowed.

## Requirements

- Prioritize style consistency first, then creative extension.
- When conflicts arise, treat prohibitions as the highest priority.
- Self-check before output: verify colors, typography, spacing, and interactions still match this style.

## Style Rules

STYLE: Blueprint
TYPE: Engineering technical drawing interface

MUST USE:
- Blueprint blue background: bg-[#1e3a5f]
- White lines and text: text-white, border-white/30
- Monospace font: font-mono for all text
- uppercase tracking-widest for labels
- Grid background pattern for coordinates
- Orange annotations: text-[#ff6b35] for highlights
- Light blue secondary: text-[#a0c4e8]
- Corner markers on cards (L-shaped borders)
- Dashed lines for auxiliary elements: border-dashed

MUST AVOID:
- Warm-toned backgrounds
- Rounded/soft design elements
- Gradient fills
- Glow or neon effects
- Serif or handwritten fonts
- Large colored blocks
- Large border-radius (rounded-2xl+)

COLOR RULES:
- White line: #ffffff (primary elements)
- Blueprint blue: #1e3a5f (background)
- Light blue: #4a90d9, #a0c4e8 (secondary elements)
- Annotation orange: #ff6b35 (highlights, callouts)

SPECIAL EFFECTS:
- Grid background pattern (20px spacing)
- Corner bracket markers on containers
- Dimension lines with end markers
- Coordinate labels as decorative elements

Animation & Interaction Rules:
- CAD Precision: Interaction effects must be crisp and precise, prefer duration-100 (adjustable within 75-150ms range), avoiding sluggish ease-in-out.
- Crosshair Reveals: On hovering interactive elements, use before/after or corner markers to reveal crosshair and alignment hints.
- Blueprint Highlight: Default blue-white palette; active or confirm states can briefly light up engineering orange #ff6b35, but it must not dominate the main visual for long.
- Grid Interaction: Container hover can slightly increase grid line visibility (white lines to light blue lines), serving only as measurement feedback, not emotional animation.

---

# Blueprint Design System

> Engineering blueprint and technical drawing style with white lines on blue, grid coordinates, annotation lines, and dimension markers. Ideal for architecture, engineering, tech, and education.

## Design Philosophy

Blueprint draws design inspiration from traditional cyanotype blueprint printing and modern engineering drafting. White lines on a blue background are its most iconic visual feature, while grid systems, annotation lines, and dimension markers give the interface a precise, professional, and trustworthy character.

Core concepts:
- Blue background with white lines: The classic blueprint color scheme -- white lines and text on a deep blue background
- Grid system: Background grids suggest a precise coordinate system and measurement units
- Annotation language: Annotation lines, dimension markers, and coordinate labels serve as both decorative and navigational elements
- Technical font: Monospace fonts reinforce the precision feel of engineering drafting

Blueprint style naturally conveys "carefully planned" and "professionally reliable" messaging. It suits any scenario that needs to demonstrate technical depth and engineering thinking. UI elements should look as if drawn on drafting paper -- buttons like legend buttons, cards like detail zoom boxes on drawings, input fields like annotation columns.

Suitable for: architecture firms, engineering consultancies, tech product launch pages, educational institutions, and technical documentation websites.

---

## Token Dictionary (exact class mapping)

### Border
```
Width: border
Color: border-white/30
Radius: rounded-none
```

### Shadow
```
sm: shadow-none
md: shadow-none
lg: shadow-[0_2px_10px_rgba(0,0,0,0.3)]
hover: hover:bg-white/5
focus: focus:border-[#4a90d9]
```

### Interaction
```
Hover translate: (none)
Hover scale: hover:bg-white/10
Hover opacity: (none)
Transition: transition-all duration-200
Active: active:scale-95
```

### Typefaces
```
Heading: font-mono tracking-wider uppercase
Body: font-mono
Mono: font-mono
```

### Type scale
```
Hero: text-3xl md:text-5xl lg:text-7xl
H1: text-2xl md:text-4xl
H2: text-xl md:text-3xl
H3: text-lg md:text-xl
Body: text-sm md:text-base
Small: text-xs
```

### Spacing
```
Section: py-16 md:py-24
Container: px-4 md:px-8
Card: p-6
Gap sm: gap-4
Gap md: gap-6
Gap lg: gap-8
```

### Color roles
```
Background primary: bg-[#1e3a5f]
Background secondary: bg-[#1e3a5f]/60
Background accent: bg-white, bg-[#4a90d9], bg-[#ff6b35]
Text primary: text-white
Text secondary: text-[#a0c4e8]
Text muted: text-white/40
Button primary: bg-transparent text-white border border-white/60
Button secondary: bg-white text-[#1e3a5f]
```

---

## [FORBIDDEN]

These classes are banned in this style. Check for them before returning code:

### Banned classes
- `bg-white`
- `bg-gray-50`
- `bg-gray-100`
- `shadow-sm`
- `shadow-md`
- `shadow-lg`
- `rounded-xl`
- `rounded-2xl`
- `rounded-3xl`
- `rounded-full`
- `font-serif`
- `bg-gradient-`

### Banned patterns
- matches `^bg-(?:white|gray-[1-3]|slate-[1-3])`
- matches `^shadow-(?:sm|md|lg|xl|2xl)`
- matches `^rounded-(?:xl|2xl|3xl|full)`
- matches `^font-serif`
- matches `^bg-gradient-`

### Why they are banned
- `bg-white`: Blueprint uses deep blue backgrounds, not white
- `shadow-md`: Blueprint uses minimal shadows; rely on borders and lines
- `rounded-xl`: Blueprint uses sharp corners for technical precision
- `font-serif`: Blueprint uses monospace fonts for engineering feel
- `bg-gradient-`: Blueprint uses flat colors, not gradients

> WARNING: if your code contains any of the above, replace it before shipping.

---

## [REQUIRED]

### Every button must include
```
px-6 py-3
font-mono
uppercase tracking-widest
text-sm
transition-all duration-200
```

### Every card must include
```
bg-[#1e3a5f]/60
border border-white/20
```

### Every input must include
```
bg-transparent
border border-white/30
text-white
font-mono
focus:border-[#4a90d9]
focus:outline-none
```

---

## [COMPARE] Blueprint wrong vs right

The wrong examples below stand for generic library defaults that were never adapted to this style. Do not read them as visual suggestions.

### Button

[WRONG] **Wrong** (generic component library default, do not copy):
```html
<button class="{GENERIC_LIBRARY_BUTTON_DEFAULT}">
 Click me
</button>
```

[CORRECT] **Right** (uses this style's tokens):
```html
<button class="px-6 py-3 font-mono uppercase tracking-widest text-sm transition-all duration-200 bg-transparent text-white border border-white/60">
 Click me
</button>
```

### Card

[WRONG] **Wrong** (generic card, not adapted to this style):
```html
<div class="{GENERIC_LIBRARY_CARD_DEFAULT}">
 <h3>{TITLE}</h3>
</div>
```

[CORRECT] **Right** (uses this style's card tokens):
```html
<div class="bg-[#1e3a5f]/60 border border-white/20 p-6">
 <h3 class="font-mono tracking-wider uppercase text-lg md:text-xl">{TITLE}</h3>
</div>
```

### Input

[WRONG] **Wrong** (generic input, not adapted to this style):
```html
<input class="{GENERIC_LIBRARY_INPUT_DEFAULT}" />
```

[CORRECT] **Right** (uses this style's input tokens):
```html
<input class="bg-transparent border border-white/30 text-white font-mono focus:border-[#4a90d9] focus:outline-none" placeholder="{PLACEHOLDER}" />
```

---

## [TEMPLATES] Blueprint page skeletons

These skeletons use this style's tokens only. Replace `{PLACEHOLDER}` values, but keep every token in place:

### Navigation
```html
<nav class="bg-[#1e3a5f] text-white border border-white/30 px-4 md:px-8">
 <div class="flex items-center justify-between max-w-6xl mx-auto gap-6">
 <a href="/" class="font-mono tracking-wider uppercase text-lg md:text-xl">
 {LOGO_TEXT}
 </a>
 <div class="flex gap-6 font-mono text-xs">
 {NAV_LINKS}
 </div>
 </div>
</nav>
```

### Hero section
```html
<section class="bg-white text-white py-16 md:py-24 px-4 md:px-8">
 <div class="max-w-4xl mx-auto">
 <h1 class="font-mono tracking-wider uppercase text-3xl md:text-5xl lg:text-7xl">
 {HEADLINE}
 </h1>
 <p class="font-mono text-sm md:text-base max-w-xl">
 {SUBHEADLINE}
 </p>
 <button class="px-6 py-3 font-mono uppercase tracking-widest text-sm transition-all duration-200 bg-transparent text-white border border-white/60">
 {CTA_TEXT}
 </button>
 </div>
</section>
```

### Card grid
```html
<section class="bg-[#1e3a5f] text-white py-16 md:py-24 px-4 md:px-8">
 <div class="max-w-6xl mx-auto">
 <h2 class="font-mono tracking-wider uppercase text-xl md:text-3xl">{SECTION_TITLE}</h2>
 <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
 <!-- Card template - repeat for each card -->
 <div class="bg-[#1e3a5f]/60 border border-white/20 p-6">
 <h3 class="font-mono tracking-wider uppercase text-lg md:text-xl">{CARD_TITLE}</h3>
 <p class="font-mono text-sm md:text-base text-white/40">{CARD_DESCRIPTION}</p>
 </div>
 </div>
 </div>
</section>
```

### Form input
```html
<input class="bg-transparent border border-white/30 text-white font-mono focus:border-[#4a90d9] focus:outline-none" placeholder="{PLACEHOLDER}" />
```

### Footer
```html
<footer class="bg-[#1e3a5f]/60 text-[#a0c4e8] py-16 md:py-24 px-4 md:px-8">
 <div class="max-w-6xl mx-auto">
 <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
 <div>
 <span class="font-mono tracking-wider uppercase text-lg md:text-xl">{LOGO_TEXT}</span>
 <p class="font-mono text-xs">{TAGLINE}</p>
 </div>
 <div>
 <h4 class="font-mono tracking-wider uppercase text-lg md:text-xl">{COLUMN_TITLE}</h4>
 <ul class="font-mono text-xs">
 {FOOTER_LINKS}
 </ul>
 </div>
 </div>
 </div>
</footer>
```

---

## [CHECKLIST] Blueprint post-generation self check

**Before returning code, verify every token and rule below. Fix any violation before delivering:**

### Token check
- [ ] Button includes: `px-6 py-3 font-mono uppercase tracking-widest text-sm transition-all duration-200`
- [ ] Card includes: `bg-[#1e3a5f]/60 border border-white/20`
- [ ] Input includes: `bg-transparent border border-white/30 text-white font-mono focus:border-[#4a90d9] focus:outline-none`

### Forbidden check
- [ ] Not using `bg-white`
- [ ] Not using `bg-gray-50`
- [ ] Not using `bg-gray-100`
- [ ] Not using `shadow-sm`
- [ ] Not using `shadow-md`
- [ ] Not using `shadow-lg`
- [ ] Not using `rounded-xl`
- [ ] Not using `rounded-2xl`

### Style rule check
- [ ] Use blueprint blue bg-[#1e3a5f] for backgrounds paired with grid line background effects
- [ ] Use white text-white or light blue text-[#a0c4e8] for text and lines
- [ ] Use monospace font font-mono to enhance the technical drafting feel
- [ ] Use white/light blue thin line borders border border-white/30
- [ ] Use orange text-[#ff6b35] for annotation highlight markers

### Style drift check
- [ ] Does not violate: Do not use warm-toned backgrounds
- [ ] Does not violate: Do not use rounded, soft design elements
- [ ] Does not violate: Do not use gradient color fills (lines and fills should be solid colors)
- [ ] Does not violate: Do not use glow effects or neon shadows
- [ ] Does not violate: Do not use serif fonts or handwritten fonts

### Delivery check
- [ ] Responsive layout holds on phone, tablet and desktop with no horizontal overflow
- [ ] Every interactive element has a visible focus state, an accessible name and a reduced-motion path
- [ ] Text contrast meets WCAG AA and colour alone never carries state
- [ ] The result is still recognizable at a glance as Blueprint

---

## [EXAMPLES] Example prompts

### 1. 

```
Create a technical architecture page using Blueprint style:
- Deep blue background with grid pattern
- System components as blueprint cards with corner markers
- Connection lines between components (dashed)
- Annotation callouts in orange
- All text in monospace uppercase
- Coordinate labels at corners for reference
```

## Absolute Bans (Match and Refuse)

If any of the following patterns appear, it is a style violation — rewrite without exception.

- use warm-toned backgrounds
- use rounded, soft design elements
- use gradient color fills (lines and fills should be solid colors)
- use glow effects or neon shadows
- use serif fonts or handwritten fonts
- use large areas of colored blocks
- use elements with overly large rounded corners rounded-2xl rounded-3xl

## Self-Check (Verify Before Shipping)

If any item fails, the style has drifted — fix before shipping.

- [ ] No purple-to-blue gradients
- [ ] No overused fonts (Inter, Roboto, Geist, Fraunces, Plus Jakarta Sans)
- [ ] No nested cards (cards inside cards)
- [ ] No gray text on colored backgrounds
- [ ] Body text contrast meets WCAG AA (>= 4.5:1)
- [ ] No bounce or elastic easing curves
- [ ] Animations have a prefers-reduced-motion fallback
- [ ] Body text line length capped at 65-75 characters
- [ ] No side-stripe accent borders (border-left/right > 1px)
- [ ] No gradient text (background-clip: text)
- [ ] No glassmorphism used as the default surface treatment
- [ ] No tiny uppercase tracked eyebrow labels above every section heading
- [ ] do not use warm-toned backgrounds
- [ ] do not use rounded, soft design elements
- [ ] do not use gradient color fills (lines and fills should be solid colors)
- [ ] do not use glow effects or neon shadows
- [ ] do not use serif fonts or handwritten fonts

More prompt libraries: All UI Prompts · Tailwind UI Prompts · Dark Mode UI Prompts

Community

Ratings & Feedback

No ratings yet - be the firstSign in to rate

Loading comments…

Component Templates

Component Preview

按钮

蓝图风格的技术按钮

// Blueprint Primary (Snappy) // Blueprint Filled (CAD Confirm) // Annotation Variant

Frontend Readiness

Dark Mode, States, Motion, and Accessibility

This layer tracks whether the style is ready for real websites: theme modes, state feedback, keyboard access, and performance constraints.

Overall

51%

Fallback

Dark Mode

0%

Missing

UI States

79%

Partial

Motion

70%

Partial

A11y

70%

Partial

Performance

35%

Fallback

Key State Coverage

light
HoverFocus VisibleDisabledLoadingEmptyErrorSuccess

Button

Default / Hover / Focus Visible / Active / Disabled

Input

Default / Hover / Focus Visible / Disabled / Error

Card

Default / Hover / Focus Visible / Loading / Skeleton

Form

Default / Focus Visible / Disabled / Loading / Error

Implementation Notes

  • No curated dark-mode contract exists yet.
  • Check contrast in both light and dark modes.
  • Check heavy shadows, blur, large media, and scroll-linked effects manually.
  • No style-specific performance cost profile has been curated yet.

FAQ

Blueprint — Frequently Asked Questions

What is the Blueprint design style?
Engineering blueprint and technical drawing style with white lines on blue, grid coordinates, annotation lines, and dimension markers. Ideal for architecture, engineering, tech, and education. Its core principle: Blueprint draws design inspiration from traditional cyanotype blueprint printing and modern engineering drafting.
What colors does Blueprint use?
Blueprint uses #ffffff as its primary color and #1e3a5f as its secondary color, with accent colors #4a90d9, #ff6b35, #a0c4e8, #b071e4. Every hex value can be copied from the palette on this page.
How do I apply Blueprint correctly?
Key practices: Use blueprint blue bg-[#1e3a5f] for backgrounds paired with grid line background effects. Use white text-white or light blue text-[#a0c4e8] for text and lines. Use monospace font font-mono to enhance the technical drafting feel.
What are common mistakes with Blueprint?
Avoid: Do not use warm-toned backgrounds. Do not use rounded, soft design elements. Do not use gradient color fills (lines and fills should be solid colors).
How do I prompt AI to generate Blueprint UI?
Copy the ready-made AI prompt on this page — it bundles the design tokens and component rules — and paste it into ChatGPT, Claude, Claude Code, or Codex. Effective prompts include the keywords: blueprint, blueprint ui, engineering drawing, technical drawing.
Global Styles

Global CSS

css
/* Blueprint Global Styles */
@layer base {
  body {
    @apply bg-[#1e3a5f] text-white antialiased;
    font-family: 'Courier New', Courier, monospace;
    background-image:
      linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
  }

  ::selection {
    @apply bg-[#4a90d9] text-white;
  }
}

/* Blueprint grid (denser) */
.blueprint-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 100px 100px, 100px 100px, 20px 20px, 20px 20px;
}

/* Dimension line */
.blueprint-dimension {
  border-top: 1px solid rgba(255, 107, 53, 0.6);
  position: relative;
}
.blueprint-dimension::before,
.blueprint-dimension::after {
  content: '';
  position: absolute;
  top: -4px;
  width: 1px;
  height: 9px;
  background: rgba(255, 107, 53, 0.6);
}
.blueprint-dimension::before { left: 0; }
.blueprint-dimension::after { right: 0; }
/* Blueprint Design Tokens */
:root {
  --blueprint-primary: #ffffff;
  --blueprint-secondary: #1e3a5f;
  --blueprint-accent: #4a90d9;
  --blueprint-glow: rgba(255, 255, 255, 0.3);
}

@keyframes blueprint-fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes blueprint-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.blueprint-frosted {
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  background: rgba(255, 255, 255, 0.08);
}

.blueprint-accent-corner {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 2rem), calc(100% - 2rem) 100%, 0 100%);
}

.blueprint-animate-in {
  animation: blueprint-fade-in 0.5s ease-out both;
}

IDE Integration

IDE Configuration Export

Download configuration files for AI coding assistants to generate code in this style.

Style Pack

Export Style Pack

Get complete machine-readable style assets including design tokens, Tailwind presets, CSS variables, and shadcn/ui themes.

Metadata

Style metadata including version information

Design Tokens

Compatible with Figma / Style Dictionary / Tokens Studio

Tailwind Preset

Tailwind CSS theme preset, import directly in config

Global CSS

CSS variables and base styles

shadcn Theme

shadcn/ui theme configuration

CSS Variables

Pure CSS variables, works with any project

SKILL.md

Loadable skill pack for Cursor / Claude Code / VS Code

Design Philosophy

Blueprint draws design inspiration from traditional cyanotype blueprint printing and modern engineering drafting. White lines on a blue background are its most iconic visual feature, while grid systems, annotation lines, and dimension markers give the interface a precise, professional, and trustworthy character.

Accessibility

Accessibility Score

WCAG 2.1 compliance analysis based on color contrast and typography readability.

50

Overall Score

Grade: D - Poor

Contrast Ratios

Score: 39/100Average Ratio: 4.81:1
AA FailAAA Fail
ContextColorsRatioAAAAA
Text on background
/#ffffff / #1e3a5f
11.5:1
Secondary text on background
/#a0c4e8 / #1e3a5f
6.33:1
Text on secondary background
/#ffffff / #1e3a5f
11.5:1
Secondary text on secondary
/#a0c4e8 / #1e3a5f
6.33:1
Text on accent 1
/#ffffff / #ffffff
1:1
Alt text on accent 1
/#a0c4e8 / #ffffff
1.82:1
Text on accent 2
/#ffffff / #4a90d9
3.34:1
Alt text on accent 2
/#a0c4e8 / #4a90d9
1.84:1
Text on accent 3
/#ffffff / #ff6b35
2.84:1
Alt text on accent 3
/#a0c4e8 / #ff6b35
1.56:1

Readability

Score

75/100

Font Size

text-sm md:text-base

Font Weight

font-mono tracking-wider uppercase

Line Height

default

Scoring is based on WCAG 2.1 standards. AA requires 4.5:1 contrast for normal text, 3:1 for large text; AAA requires 7:1 for normal text, 4.5:1 for large text.