Style Catalog/Pixel Anime

Pixel Anime

像素动漫风

D
51/100Poor
Rate this style

Merging classic JRPG game UI with pixel anime aesthetics, featuring RPG dialogue boxes, status bars, pixel borders, and NES color palette for a nostalgic 8-bit game interface style.

pixel animeJRPG uiretro game uirpg dialogue box8-bit interface16-bit menuNES color palettepixel bordersgame hud designretro rpg aesthetic
View Full Showcase →
Templates

Best For

pixel anime / JRPG ui / retro game ui

Primary Move

Use RPG dialogue box frames with 4px borders and corner block decorations

Watch Out

Never use smooth gradients (linear-gradient, radial-gradient)

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: Pixel Anime
style_slug: pixel-anime
style_source: /styles/pixel-anime

# 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

You are a Pixel Anime design style frontend development expert. All generated code must strictly follow these constraints:

## Absolutely Forbidden

- Smooth gradients (linear-gradient, radial-gradient for decoration)
- Rounded corners (rounded-lg, rounded-xl, rounded-full)
- Blur effects (blur, backdrop-blur)
- Serif fonts
- Soft shadows (shadow-sm, shadow-md, shadow-lg, shadow-xl)

## Must Follow

- Dark purple background: bg-[#2d1b69] as primary, bg-[#1a1040] as secondary
- RPG dialogue box frames with 2-4px borders and corner block decorations
- HP/MP/EXP status bar UI elements with flat color fills
- Hard offset pixel shadows: shadow-[4px_4px_0px_#1a1040]
- Monospace font: font-mono for ALL text
- Bold 2px borders: border-2 border-[#1a1040]
- Flat colors only, no gradients
- Step-based hover: hover:translate-x-[2px] hover:translate-y-[2px]
- Linear easing: ease-linear, duration-75

## Color Palette (NES-inspired)

Primary:
- Pixel Blue: #4a90d9
- Dark Purple: #2d1b69
- Deep Dark: #1a1040
- Pixel Red: #ff6b6b
- Pixel Gold: #ffd93d
- Pixel Green: #50c878
- Light Text: #e0e0ff

## Unique Elements

- RPG dialogue box frame with corner block decorations
- HP/MP/EXP status bar progress indicators
- Pixel-grid background pattern (8px grid)
- Blinking pixel arrow cursor/continue indicators
- Step-based pixel-aligned hover translations

## Animation & Interaction Rules

- Framerate Drop: All transitions must use duration-75 ease-linear to simulate 15fps GBA/NDS-era animation. Never use ease-in-out or smooth bezier curves -- pixel animations are abrupt state changes.
- Blocky Aura: Hover glow must use multi-directional hard-edge colored shadows with zero blur: hover:shadow-[4px_4px_0_#ffd93d,-2px_-2px_0_#ffd93d]. No blur() or drop-shadow() ever.
- Anime Action: Button active state applies squash-and-stretch: active:scale-x-110 active:scale-y-90 -- Japanese animation physics on press, not a translate drop.
- Corner Blink: Card corner pixel squares must use group-hover:animate-pulse to simulate idle game UI animation. Never animate in non-hover state -- blink only when the player's cursor is over the card.

---

# Pixel Anime Design System

> Merging classic JRPG game UI with pixel anime aesthetics, featuring RPG dialogue boxes, status bars, pixel borders, and NES color palette for a nostalgic 8-bit game interface style.

## Design Philosophy

Pixel Anime merges classic JRPG game UI with pixel-art anime aesthetics. Every element feels like it belongs in a 16-bit RPG menu screen.

Core principles:
- RPG Dialogue Boxes: Window frames with chunky borders and corner block decorations, referencing Final Fantasy and Dragon Quest menu systems
- Health/Status Bars: HP, MP, and EXP progress bars with pixel-precise flat fills and bordered containers
- Pixel Borders: All borders are 2px+ solid with hard edges, using image-rendering: pixelated where applicable
- NES/SNES Palette: Limited color palette of bold primary colors (blue, red, gold, green) on deep purple backgrounds
- Step-based Interactions: Hover states use translate-x/y in pixel-aligned steps, not smooth transforms
- Blinking Cursor: Selection arrows and continue prompts use blinking pixel arrows

---

## Token Dictionary (exact class mapping)

### Border
```
Width: border-2
Color: border-[#1a1040]
Radius: rounded-none
```

### Shadow
```
sm: shadow-[2px_2px_0px_#1a1040]
md: shadow-[4px_4px_0px_#1a1040]
lg: shadow-[6px_6px_0px_#1a1040]
hover: hover:shadow-[6px_6px_0px_#1a1040]
focus: focus:shadow-[2px_2px_0px_#4a90d9]
```

### Interaction
```
Hover translate: hover:translate-x-[2px] hover:translate-y-[2px]
Hover scale: (none)
Hover opacity: (none)
Transition: transition-all duration-150 ease-linear
Active: active:translate-x-[4px] active:translate-y-[4px] active:shadow-none
```

### Typefaces
```
Heading: font-mono font-bold uppercase tracking-wider
Body: font-mono text-[#e0e0ff]/80
Mono: font-mono
```

### Type scale
```
Hero: text-4xl md:text-6xl lg:text-7xl
H1: text-3xl md:text-5xl
H2: text-2xl md:text-3xl
H3: text-lg md:text-xl
Body: text-xs md:text-sm
Small: text-[10px] md:text-xs
```

### Spacing
```
Section: py-12 md:py-20 lg:py-28
Container: px-4 md:px-8 lg:px-12
Card: p-4 md:p-6
Gap sm: gap-3 md:gap-4
Gap md: gap-4 md:gap-6
Gap lg: gap-6 md:gap-8
```

### Color roles
```
Background primary: bg-[#2d1b69]
Background secondary: bg-[#1a1040]
Background accent: bg-[#4a90d9], bg-[#ff6b6b], bg-[#ffd93d], bg-[#50c878]
Text primary: text-[#e0e0ff]
Text secondary: text-[#ffd93d]
Text muted: text-[#e0e0ff]/50
Button primary: bg-[#4a90d9] text-white shadow-[4px_4px_0px_#1a1040]
Button secondary: bg-[#ff6b6b] text-white shadow-[4px_4px_0px_#1a1040]
```

---

## [FORBIDDEN]

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

### Banned classes
- `rounded-lg`
- `rounded-xl`
- `rounded-2xl`
- `rounded-full`
- `bg-gradient-to-r`
- `bg-gradient-to-b`
- `bg-gradient-to-br`
- `shadow-sm`
- `shadow-md`
- `shadow-lg`
- `shadow-xl`
- `backdrop-blur`
- `backdrop-blur-sm`
- `backdrop-blur-md`
- `font-serif`

### Banned patterns
- matches `^rounded-(?:lg|xl|2xl|full)$`
- matches `^bg-gradient-`
- matches `^shadow-(?:sm|md|lg|xl)$`
- matches `^backdrop-blur`
- matches `^font-serif$`

### Why they are banned
- `rounded-lg`: Pixel Anime uses sharp corners only -- pixels cannot be round
- `bg-gradient-to-r`: Pixel Anime uses flat solid colors, no smooth gradients allowed
- `shadow-md`: Pixel Anime uses hard offset pixel shadows only, never soft shadows
- `backdrop-blur`: Pixel Anime avoids all blur effects to maintain crisp pixel aesthetic

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

---

## [REQUIRED]

### Every button must include
```
font-mono font-bold uppercase
border-2 border-[#1a1040]
shadow-[4px_4px_0px_#1a1040]
transition-all duration-150 ease-linear
```

### Every card must include
```
bg-[#2d1b69]
border-2 border-[#1a1040]
shadow-[4px_4px_0px_#1a1040]
```

### Every input must include
```
bg-[#1a1040]
border-2 border-[#4a90d9]
font-mono
focus:outline-none
```

---

## [COMPARE] Pixel Anime 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="font-mono font-bold uppercase border-2 border-[#1a1040] shadow-[4px_4px_0px_#1a1040] transition-all duration-150 ease-linear bg-[#4a90d9] text-white shadow-[4px_4px_0px_#1a1040]">
 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-[#2d1b69] border-2 border-[#1a1040] shadow-[4px_4px_0px_#1a1040] p-4 md:p-6">
 <h3 class="font-mono font-bold uppercase tracking-wider 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-[#1a1040] border-2 border-[#4a90d9] font-mono focus:outline-none" placeholder="{PLACEHOLDER}" />
```

---

## [TEMPLATES] Pixel Anime page skeletons

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

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

### Hero section
```html
<section class="bg-[#4a90d9] text-[#e0e0ff] py-12 md:py-20 lg:py-28 px-4 md:px-8 lg:px-12">
 <div class="max-w-4xl mx-auto">
 <h1 class="font-mono font-bold uppercase tracking-wider text-4xl md:text-6xl lg:text-7xl">
 {HEADLINE}
 </h1>
 <p class="font-mono text-[#e0e0ff]/80 text-xs md:text-sm max-w-xl">
 {SUBHEADLINE}
 </p>
 <button class="font-mono font-bold uppercase border-2 border-[#1a1040] shadow-[4px_4px_0px_#1a1040] transition-all duration-150 ease-linear bg-[#4a90d9] text-white shadow-[4px_4px_0px_#1a1040]">
 {CTA_TEXT}
 </button>
 </div>
</section>
```

### Card grid
```html
<section class="bg-[#2d1b69] text-[#e0e0ff] py-12 md:py-20 lg:py-28 px-4 md:px-8 lg:px-12">
 <div class="max-w-6xl mx-auto">
 <h2 class="font-mono font-bold uppercase tracking-wider text-2xl md:text-3xl">{SECTION_TITLE}</h2>
 <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-4 md:gap-6">
 <!-- Card template - repeat for each card -->
 <div class="bg-[#2d1b69] border-2 border-[#1a1040] shadow-[4px_4px_0px_#1a1040] p-4 md:p-6">
 <h3 class="font-mono font-bold uppercase tracking-wider text-lg md:text-xl">{CARD_TITLE}</h3>
 <p class="font-mono text-[#e0e0ff]/80 text-xs md:text-sm text-[#e0e0ff]/50">{CARD_DESCRIPTION}</p>
 </div>
 </div>
 </div>
</section>
```

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

### Footer
```html
<footer class="bg-[#1a1040] text-[#ffd93d] py-12 md:py-20 lg:py-28 px-4 md:px-8 lg:px-12">
 <div class="max-w-6xl mx-auto">
 <div class="grid grid-cols-1 md:grid-cols-3 gap-6 md:gap-8">
 <div>
 <span class="font-mono font-bold uppercase tracking-wider text-lg md:text-xl">{LOGO_TEXT}</span>
 <p class="font-mono text-[#e0e0ff]/80 text-[10px] md:text-xs">{TAGLINE}</p>
 </div>
 <div>
 <h4 class="font-mono font-bold uppercase tracking-wider text-lg md:text-xl">{COLUMN_TITLE}</h4>
 <ul class="font-mono text-[#e0e0ff]/80 text-[10px] md:text-xs">
 {FOOTER_LINKS}
 </ul>
 </div>
 </div>
 </div>
</footer>
```

---

## [CHECKLIST] Pixel Anime post-generation self check

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

### Token check
- [ ] Button includes: `font-mono font-bold uppercase border-2 border-[#1a1040] shadow-[4px_4px_0px_#1a1040] transition-all duration-150 ease-linear`
- [ ] Card includes: `bg-[#2d1b69] border-2 border-[#1a1040] shadow-[4px_4px_0px_#1a1040]`
- [ ] Input includes: `bg-[#1a1040] border-2 border-[#4a90d9] font-mono focus:outline-none`

### Forbidden check
- [ ] Not using `rounded-lg`
- [ ] Not using `rounded-xl`
- [ ] Not using `rounded-2xl`
- [ ] Not using `rounded-full`
- [ ] Not using `bg-gradient-to-r`
- [ ] Not using `bg-gradient-to-b`
- [ ] Not using `bg-gradient-to-br`
- [ ] Not using `shadow-sm`

### Style rule check
- [ ] Use RPG dialogue box frames with 4px borders and corner block decorations
- [ ] Include HP/MP/EXP status bar UI elements with flat fills
- [ ] Apply hard offset shadows (4px_4px_0px) for pixel depth
- [ ] Use monospace font exclusively for all text
- [ ] Keep interactions step-based (translate-x/y in 2px increments)

### Style drift check
- [ ] Does not violate: Never use smooth gradients (linear-gradient, radial-gradient)
- [ ] Does not violate: Never use rounded corners (rounded-lg/xl/full)
- [ ] Does not violate: Never use blur effects (blur, backdrop-blur)
- [ ] Does not violate: Never use serif fonts
- [ ] Does not violate: Never use soft shadows (shadow-sm/md/lg/xl)

### 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 Pixel Anime

---

## [EXAMPLES] Example prompts

### 1. JRPG

RPG

```
Use Pixel Anime style to create a JRPG character panel:
1. Background: dark purple with visible pixel grid overlay
2. RPG dialogue box frames with corner block decorations
3. HP/MP/EXP status bars with flat color fills
4. Character stats in monospace font, NES color palette
5. Pixel shadows and step-based button interactions
```

## Absolute Bans (Match and Refuse)

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

- use smooth gradients (linear-gradient, radial-gradient)
- use rounded corners (rounded-lg/xl/full)
- use blur effects (blur, backdrop-blur)
- use serif fonts
- use soft shadows (shadow-sm/md/lg/xl)
- use ease-in-out or ease curves -- only ease-linear or transition-none (pixel animations are abrupt, not organic)
- use blurred glow shadows for the Blocky Aura effect -- zero blur is mandatory for 8-bit authenticity
- trigger Corner Blink animation outside of group-hover state -- idle blinking on load creates visual noise

## 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
- [ ] never use smooth gradients (linear-gradient, radial-gradient)
- [ ] never use rounded corners (rounded-lg/xl/full)
- [ ] never use blur effects (blur, backdrop-blur)
- [ ] never use serif fonts
- [ ] never use soft shadows (shadow-sm/md/lg/xl)

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

RPG Menu Button

Pixel anime button with Blocky Aura multi-shadow hover + Anime Action squash-and-stretch on press

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

58%

Fallback

Dark Mode

35%

Fallback

UI States

79%

Partial

Motion

70%

Partial

A11y

70%

Partial

Performance

35%

Fallback

Key State Coverage

light / dark
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

  • This style contains dark-mode signals, but no curated dark token contract has been reviewed.
  • 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

Pixel Anime — Frequently Asked Questions

What is the Pixel Anime design style?
Merging classic JRPG game UI with pixel anime aesthetics, featuring RPG dialogue boxes, status bars, pixel borders, and NES color palette for a nostalgic 8-bit game interface style. Its core principle: Pixel Anime merges classic JRPG game UI with pixel-art anime aesthetics.
What colors does Pixel Anime use?
Pixel Anime uses #4a90d9 as its primary color and #2d1b69 as its secondary color, with accent colors #ff6b6b, #ffd93d, #50c878, #a98d16. Every hex value can be copied from the palette on this page.
How do I apply Pixel Anime correctly?
Key practices: Use RPG dialogue box frames with 4px borders and corner block decorations. Include HP/MP/EXP status bar UI elements with flat fills. Apply hard offset shadows (4px_4px_0px) for pixel depth.
What are common mistakes with Pixel Anime?
Avoid: Never use smooth gradients (linear-gradient, radial-gradient). Never use rounded corners (rounded-lg/xl/full). Never use blur effects (blur, backdrop-blur).
How do I prompt AI to generate Pixel Anime 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: pixel anime, JRPG ui, retro game ui, rpg dialogue box.
Global Styles

Global CSS

css
/* Pixel Anime Global Styles */

:root {
  --pa-blue: #4a90d9;
  --pa-dark: #2d1b69;
  --pa-deep: #1a1040;
  --pa-red: #ff6b6b;
  --pa-gold: #ffd93d;
  --pa-green: #50c878;
  --pa-text: #e0e0ff;
}

/* RPG dialogue box frame with corner blocks */
.pa-dialog-frame {
  position: relative;
  border: 2px solid var(--pa-blue);
  background: var(--pa-deep);
}
.pa-dialog-frame::before,
.pa-dialog-frame::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--pa-blue);
}
.pa-dialog-frame::before { top: -4px; left: -4px; }
.pa-dialog-frame::after { top: -4px; right: -4px; }

/* Pixel grid overlay */
.pa-pixel-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26, 16, 64, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 16, 64, 0.12) 1px, transparent 1px);
  background-size: 8px 8px;
  pointer-events: none;
  image-rendering: pixelated;
}

/* HP/MP/EXP status bar */
.pa-status-bar {
  height: 8px;
  border: 2px solid var(--pa-deep);
  background: var(--pa-deep);
}
.pa-status-bar-fill {
  height: 100%;
  image-rendering: pixelated;
}

/* Pixel hard shadow */
.pa-shadow {
  box-shadow: 4px 4px 0px var(--pa-deep);
}

/* Blinking cursor animation */
@keyframes pa-blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}
.pa-blink {
  animation: pa-blink 1s infinite;
}

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

Pixel Anime merges classic JRPG game UI with pixel-art anime aesthetics. Every element feels like it belongs in a 16-bit RPG menu screen.

Accessibility

Accessibility Score

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

51

Overall Score

Grade: D - Poor

Contrast Ratios

Score: 42/100Average Ratio: 5.48:1
AA FailAAA Fail
ContextColorsRatioAAAAA
Text on background
/#e0e0ff / #2d1b69
11.05:1
Secondary text on background
/#ffd93d / #2d1b69
10.35:1
Muted text on background
/#e0e0ff / #2d1b69
11.05:1
Text on secondary background
/#e0e0ff / #1a1040
13.65:1
Secondary text on secondary
/#ffd93d / #1a1040
12.79:1
Button primary
/#ffffff / #4a90d9
3.34:1
Text on accent 1
/#e0e0ff / #4a90d9
2.59:1
Alt text on accent 1
/#ffd93d / #4a90d9
2.43:1
Text on accent 2
/#e0e0ff / #ff6b6b
2.15:1
Alt text on accent 2
/#ffd93d / #ff6b6b
2.01:1
Text on accent 3
/#e0e0ff / #ffd93d
1.07:1
Alt text on accent 3
/#ffd93d / #ffd93d
1:1
Text on accent 4
/#e0e0ff / #50c878
1.65:1
Alt text on accent 4
/#ffd93d / #50c878
1.54:1

Readability

Score

72/100

Font Size

text-xs md:text-sm

Font Weight

font-mono font-bold uppercase tracking-wider

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.