Best For
medieval manuscript / illuminated manuscript / blackletter
中世纪手抄本
Medieval illuminated manuscript style with ornate drop-cap initials, parchment textures, gold and deep-red decorative borders. Gothic blackletter combined with illustrative elements.
Best For
medieval manuscript / illuminated manuscript / blackletter
Primary Move
Use parchment color bg-[#f0e6d0] as the main background base
Watch Out
Do not use sans-serif fonts font-sans as the primary font
AI Implementation
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.
Use this by default: copy it, append the concrete requirement, and let AI generate consistent production UI.
When to use
How to use
STYLEKIT_STYLE_REFERENCE
style_name: Medieval Manuscript
style_slug: medieval-manuscript
style_source: /styles/medieval-manuscript
# 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 Medieval Manuscript design style frontend development expert. All generated code must strictly follow these constraints:
## Absolutely Forbidden
- Sans-serif fonts (font-sans) as primary font
- Modern gradients (bg-gradient-to-r with modern neon/tech colors)
- Neon, fluorescent, or high-saturation modern colors
- Backdrop blur effects (backdrop-blur)
- Pure black bg-black or pure white bg-white backgrounds
- Large rounded corners (rounded-xl, rounded-2xl, rounded-full)
- Futuristic or tech-style design elements
## Must Follow
- Parchment background bg-[#f0e6d0] as base
- Deep red #8b1a1a for headings and important text
- Gold #c9a74e for borders, decorations, and highlights
- Dark brown #3d2b1f for body text and secondary borders
- Serif fonts font-serif throughout
- Double-line borders border-double border-4 for ornate frames
- Corner decorations on cards and containers
- Drop cap effect on hero titles (first letter enlarged)
## Color Palette
Primary:
- Deep Red: #8b1a1a
- Parchment: #f0e6d0
- Gold Leaf: #c9a74e
- Monastery Green: #2d4a2d
- Dark Brown: #3d2b1f
## Unique Elements (Medieval Manuscript-Only)
1. Drop cap: first letter of headings enlarged (text-5xl+) in gold #c9a74e
2. Double-line borders: border-double border-4 border-[#c9a74e] for ornate framing
3. Corner flourishes: small border-t/l/r/b decorations at card corners
4. Parchment texture: radial-gradient overlays simulating skin variation
5. Gold dividers: border-t-2 border-[#c9a74e] horizontal separators
## Animation & Interaction Rules
- Parchment Stillness: No light floating or elastic scaling; maintain solemn stillness on the parchment plane.
- Wax Seal Impact: Active feedback uses hard shadow + lower-right displacement, simulating a wax seal press.
- Gold Leaf Shimmer: Gold borders and drop caps slowly brighten on hover, recommend duration-700 ease-in-out.
- Ink Saturation: Red-brown text and decorative lines should deepen progressively, avoiding abrupt jumps.
## Absolute Bans (Match and Refuse)
If any of the following patterns appear, it is a style violation — rewrite without exception.
- use sans-serif fonts font-sans as the primary font
- use modern gradients (bg-gradient-to-r with modern neon/tech colors)
- use neon, fluorescent, or high-saturation modern colors
- use frosted glass effects (backdrop-blur)
- use pure black bg-black or pure white bg-white backgrounds
- use rounded corners rounded-xl or larger modern rounded corners
- use tech or futuristic design elements
- use hover:-translate-y-* on buttons (parchment is laid flat, no floating feel)
## 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 sans-serif fonts font-sans as the primary font
- [ ] do not use modern gradients (bg-gradient-to-r with modern neon/tech colors)
- [ ] do not use neon, fluorescent, or high-saturation modern colors
- [ ] do not use frosted glass effects (backdrop-blur)
- [ ] do not use pure black bg-black or pure white bg-white backgroundsComponent Templates
手抄本风格按钮,火漆压印式点击与金箔提亮反馈
Frontend Readiness
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%
MissingUI States
79%
PartialMotion
70%
PartialA11y
70%
PartialPerformance
35%
FallbackButton
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
FAQ
/* Medieval Manuscript Global Styles */
:root {
--ms-red: #8b1a1a;
--ms-parchment: #f0e6d0;
--ms-gold: #c9a74e;
--ms-green: #2d4a2d;
--ms-brown: #3d2b1f;
}
/* Drop cap - illuminated first letter */
.ms-drop-cap::first-letter {
float: left;
font-size: 4em;
line-height: 0.8;
padding-right: 8px;
color: var(--ms-gold);
font-weight: bold;
}
/* Gold leaf shimmer */
.ms-gold-leaf {
color: var(--ms-gold);
text-shadow: 1px 1px 2px rgba(201, 167, 78, 0.4);
}
/* Decorative double-line border */
.ms-ornate-border {
border: 4px double var(--ms-gold);
position: relative;
}
.ms-ornate-border::before {
content: "";
position: absolute;
inset: 4px;
border: 1px solid rgba(201, 167, 78, 0.3);
pointer-events: none;
}
/* Corner flourish */
.ms-corner-flourish {
position: relative;
}
.ms-corner-flourish::before,
.ms-corner-flourish::after {
content: "";
position: absolute;
width: 16px;
height: 16px;
border-color: var(--ms-gold);
opacity: 0.6;
}
.ms-corner-flourish::before {
top: 4px;
left: 4px;
border-top: 2px solid;
border-left: 2px solid;
}
.ms-corner-flourish::after {
bottom: 4px;
right: 4px;
border-bottom: 2px solid;
border-right: 2px solid;
}
/* Parchment texture */
.ms-parchment {
background-color: var(--ms-parchment);
background-image:
radial-gradient(circle at 30% 40%, rgba(61, 43, 31, 0.03) 0%, transparent 50%),
radial-gradient(circle at 70% 60%, rgba(139, 26, 26, 0.02) 0%, transparent 40%);
}
/* Manuscript column text */
.ms-column-text {
font-family: Georgia, 'Times New Roman', serif;
line-height: 1.8;
text-align: justify;
hyphens: auto;
}IDE Integration
Download configuration files for AI coding assistants to generate code in this style.
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
The Medieval Illuminated Manuscript represents the pinnacle of Western book art, born in the scriptoria of monasteries. Every page is a union of faith and aesthetics -- gold-leaf decorated initials, intricate vine-scroll patterns, deep red and deep green mineral pigments, and the warm texture unique to parchment.
WCAG 2.1 compliance analysis based on color contrast and typography readability.
Overall Score
Grade: D - Poor
Contrast Ratios
| Context | Colors | Ratio | AA | AAA |
|---|---|---|---|---|
| Text on background | /#3d2b1f / #f0e6d0 | 10.83:1 | ||
| Secondary text on background | /#8b1a1a / #f0e6d0 | 7.49:1 | ||
| Muted text on background | /#3d2b1f / #f0e6d0 | 10.83:1 | ||
| Text on secondary background | /#3d2b1f / #8b1a1a | 1.45:1 | ||
| Secondary text on secondary | /#8b1a1a / #8b1a1a | 1:1 | ||
| Button primary | /#f0e6d0 / #8b1a1a | 7.49:1 | ||
| Text on accent 1 | /#3d2b1f / #c9a74e | 5.83:1 | ||
| Alt text on accent 1 | /#8b1a1a / #c9a74e | 4.04:1 | ||
| Text on accent 2 | /#3d2b1f / #2d4a2d | 1.36:1 | ||
| Alt text on accent 2 | /#8b1a1a / #2d4a2d | 1.06:1 | ||
| Text on accent 3 | /#3d2b1f / #3d2b1f | 1:1 | ||
| Alt text on accent 3 | /#8b1a1a / #3d2b1f | 1.45:1 |
Readability
Score
90/100
Font Size
text-sm md:text-base
Font Weight
font-serif 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.