Skip to content

Editable Graphic Recording v2.1 - Aimi Yabi

Intended Use

  • Editable graphic recording with traditional indigo aesthetics elevated to modern times
  • Visual expression utilizing Font Awesome
  • Elegant graphic recording harmonizing tradition and modernity

Prompt

text
# Editable Graphic Recording Prompt v2.1 ~Aimi Yabi~

This prompt is a comprehensive requirement definition for automatically generating a **Japanese-editable infographic HTML** with **indigo dye aesthetics elevated to modern times**. By **actively utilizing Font Awesome**, it creates a visually beautiful and intuitively operable graphic recording tool that harmonizes traditional indigo depth with modern sophistication.

## 🎨 Design Specifications

### 1. Color Scheme (Indigo Elegant Palette)
| Name | HEX | Primary Use | Font Awesome Icon Examples |
|------|-----|-------------|---------------------------|
| Primary | #1B365D | Titles, important backgrounds | `<i class="fas fa-waves"></i>` |
| Secondary | #2E5984 | Accents, links | `<i class="fas fa-moon"></i>` |
| Accent | #5A8FC8 | Highlights, decorations | `<i class="fas fa-snowflake"></i>` |
| Neon-Silver | #B8D4E3 | Hover, glow effects | `<i class="fas fa-star"></i>` |
| BG-Dark | #FAFBFC | Basic background | `<i class="fas fa-circle"></i>` |
| BG-Light | #F4F7FA | Section background | `<i class="fas fa-square"></i>` |

*Background uses pale blue-gray mica tone (BG-Dark), body text uses deep indigo (#1B2951), and auxiliary text uses elegant indigo mouse gray (#3A5F7D). Define these 6 colors as CSS variables and use gradients (Primary→Secondary) extensively to express the depth and serene beauty of indigo.*

### 2. Typography & Font Awesome Utilization Strategy
- **Japanese fonts**: `Kaisei Decol` (Japanese headings, important text) / `M PLUS Rounded 1c` (body text, UI elements) / `Bebas Neue` (alphanumeric, emphasized numbers)
- **Title (h1)**: clamp(4rem,10vw,8rem) / 400 / **Kaisei Decol** / Indigo elegant gradient / ***Use nature icons like `<i class="fas fa-water"></i>` `<i class="fas fa-mountain"></i>` in combination***
- **Subtitle (h2)**: clamp(2.5rem,6vw,4rem) / 400 / **Kaisei Decol** / ***Express section dividers with `<i class="fas fa-cloud"></i>` `<i class="fas fa-wind"></i>` etc.***
- **Heading (h3)**: clamp(1.8rem,4vw,2.5rem) / 400 / **Kaisei Decol** / ***Category identification with `<i class="fas fa-snowflake"></i>` `<i class="fas fa-gem"></i>`***
- **Body text, UI elements**: 16px / 400 / **M PLUS Rounded 1c** / Emphasize readability and elegance
- **Font Awesome Integration Strategy**:
  - 📊 Data display: `<i class="fas fa-chart-bar"></i>` `<i class="fas fa-chart-pie"></i>` `<i class="fas fa-chart-line"></i>`
  - 🎯 Important points: `<i class="fas fa-bullseye"></i>` `<i class="fas fa-exclamation-triangle"></i>` `<i class="fas fa-lightbulb"></i>`
  - 📝 Edit functions: `<i class="fas fa-edit"></i>` `<i class="fas fa-save"></i>` `<i class="fas fa-undo"></i>`
  - 🔄 Process: `<i class="fas fa-arrow-right"></i>` `<i class="fas fa-sync-alt"></i>` `<i class="fas fa-check-circle"></i>`
  - 👥 People, organizations: `<i class="fas fa-user"></i>` `<i class="fas fa-users"></i>` `<i class="fas fa-building"></i>`

### 3. Layout & Font Awesome Placement Strategy
1. **Header**:
   - Left: `<i class="fas fa-scroll"></i>` + title
   - Right: `<i class="fas fa-calendar-alt"></i>` + date / `<i class="fas fa-link"></i>` + source
2. **2-column layout**: Left 50% / Right 50%
3. **Card elements**:
   - Washi paper texture background + rounded corners 16px + elegant shadow
   - Place large relevant Font Awesome icons at top of cards
   - `<i class="fas fa-info-circle"></i>` `<i class="fas fa-question-circle"></i>` `<i class="fas fa-cog"></i>` etc.
4. **Section dividers**: Use three `<i class="fas fa-minus"></i>` in a row as indigo decorative lines
5. **Navigation**: Intuitive operation with `<i class="fas fa-chevron-up"></i>` `<i class="fas fa-chevron-down"></i>`

### 4. Indigo Elegant Decorative Elements
- **Background pattern**: Lightweight SVG implementation of seigaiha (blue ocean wave) pattern
- **Accents**: Subtly place `<i class="fas fa-yin-yang"></i>` `<i class="fas fa-snowflake"></i>`
- **Glassmorphism**: Express water surface transparency when emphasizing important data
- **Subtle animation**: Elegant and serene movement like snow crystals dancing

---

## ⚙️ Technical Specifications

### 1. Basic Structure
- **HTML/CSS/JavaScript single file** (external dependencies: Google Fonts [Kaisei Decol + M PLUS Rounded 1c] + Font Awesome CDN)
- **Required font settings**:
```html
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Kaisei+Decol&family=M+PLUS+Rounded+1c&display=swap" rel="stylesheet">
  • CSS class definitions:
css
.kaisei-decol-regular {
  font-family: "Kaisei Decol", serif;
  font-weight: 400;
  font-style: normal;
}

.m-plus-rounded-1c-regular {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 400;
  font-style: normal;
}
  • Screen ratio: 16:9 or 4:3
  • Responsive support: <meta name="viewport" content="width=device-width, initial-scale=1">

2. Edit Mode Button (Required Implementation)

html
<button id="toggleEdit" style="position:fixed;top:15px;right:15px;z-index:9999;background:var(--primary-color);color:white;border:none;padding:12px 18px;border-radius:12px;cursor:pointer;box-shadow:0 4px 12px rgba(27,54,93,0.3);" class="m-plus-rounded-1c-regular">
    <i class="fas fa-edit"></i> Edit Mode
</button>

<script>
const btn = document.getElementById('toggleEdit');
let editing = false;
btn.onclick = () => {
    editing = !editing;
    document.body.contentEditable = editing;
    document.designMode = editing ? 'on' : 'off';
    btn.innerHTML = editing ?
        '<i class="fas fa-save"></i> End(Save: File → Save Page As)' :
        '<i class="fas fa-edit"></i> Edit Mode';
    btn.style.background = editing ? 'var(--neon-silver)' : 'var(--primary-color)';
    btn.style.color = editing ? 'var(--primary-color)' : 'white';
};
</script>

3. Font Awesome Icon Usage Code Examples

html
<!-- Section header example -->
<h2 class="kaisei-decol-regular"><i class="fas fa-water" style="color:var(--primary-color);margin-right:10px;"></i>Design Specifications</h2>

<!-- Data display card example -->
<div class="data-card">
    <div class="card-header">
        <i class="fas fa-chart-pie fa-2x" style="color:var(--accent-color);"></i>
        <h3 class="kaisei-decol-regular">Statistical Data</h3>
    </div>
    <div class="card-content m-plus-rounded-1c-regular">
        <p><i class="fas fa-arrow-up" style="color:var(--secondary-color);"></i> 120% improvement year-over-year</p>
    </div>
</div>

<!-- Process flow example -->
<div class="process-flow">
    <div class="step m-plus-rounded-1c-regular">
        <i class="fas fa-play-circle fa-2x"></i>
        <span>Start</span>
    </div>
    <i class="fas fa-arrow-right fa-2x" style="color:var(--secondary-color);"></i>
    <div class="step m-plus-rounded-1c-regular">
        <i class="fas fa-cogs fa-2x"></i>
        <span>Process</span>
    </div>
    <i class="fas fa-arrow-right fa-2x" style="color:var(--secondary-color);"></i>
    <div class="step m-plus-rounded-1c-regular">
        <i class="fas fa-check-circle fa-2x"></i>
        <span>Complete</span>
    </div>
</div>
  • Washi paper texture: CSS filter: blur(0.3px) for elegant texture expression
  • Seigaiha pattern: SVG implementation, pointer-events:none;
  • Snow crystal animation: CSS @keyframes for graceful and serene falling effect

5. Accessibility & Usability

  • Font Awesome icons: Must include aria-label or title attributes
  • Color contrast: WCAG 2.1 AA compliance (ensure high contrast even with indigo base)
  • Keyboard navigation: Set logical tab order
  • Screen reader support: Semantic HTML + appropriate ARIA attributes

🎯 Important Implementation Points

Notes on Font Awesome Utilization

  1. Performance: Use only necessary icons and load Font Awesome CDN efficiently
  2. Consistency: Unify icons with the same meaning and maintain visual hierarchy
  3. Indigo elegant taste: Actively use nature element icons like water, sky, snow to harmonize with indigo aesthetics
  4. Responsive: Use appropriate icon sizes with fa-lg fa-2x fa-3x
  5. Animation: Use fa-spin fa-pulse sparingly to maintain serene beauty

Essence of Indigo Elegant Design

  • Aesthetics of serenity: Create heart's serenity with appropriate whitespace and indigo depth
  • Natural colors: Refreshing and elegant palette based on water, sky, and snow colors
  • Typography: Express beautiful contrast like indigo dye shades with text
  • Refined simplicity: Minimal decoration, emphasizing functional beauty and serene elegance

The HTML generated according to this prompt will be an editable high-quality graphic recording tool that fuses traditional Japanese indigo aesthetics with modern elegance. Through the serene and elegant world of Aimi Yabi, information is expressed beautifully and pleasantly.

Text to Convert to Graphic Recording



## How to Use

1. Input the prompt to AI
2. Add the text content you want to transform
3. Editable HTML will be generated

## Input Example

[Meeting content to transform into graphic recording]


## Output Example

```html
<!-- Editable graphic recording HTML with indigo elegant design -->
<button id="toggleEdit">
  <i class="fas fa-edit"></i> Edit Mode
</button>
<script>
  // Edit mode toggle functionality
</script>

Notes

  • Maintain indigo elegant design consistency
  • Place Font Awesome icons effectively
  • Ensure edit functionality is implemented
  • Properly use traditional Japanese decorative elements like seigaiha pattern