Creates Dayuse-branded presentations (PPTX) with consistent visual identity and storytelling structure. Use when the user asks to create a presentation, deck, slides, pitch deck, roadmap, reporting, plan d'action, or any PPTX for Dayuse. Also use when user mentions "prez Dayuse", "deck Dayuse", "slides internes", "pitch hotel", or "presentation partenaire". Handles both external pitch decks and internal strategy/reporting presentations. Do NOT use for non-Dayuse presentations.
This skill creates Dayuse-branded presentations following the company's visual identity (sourced from the official Figma brand guidelines), storytelling framework, and slide patterns.
Before creating any presentation, always also read the main
pptx
skill for technical guidance on creating PPTX files with PptxGenJS.
Website, web banners, formal documents, toned-down communications
2:1
Icons / Symbols (assets/icons/)
File
Description
Usage
icon-gradient.png
"Y" symbol in sun gradient circle (jaune → orange → corail)
Expressive use: social media favicons, app icon contexts. Can ONLY be used with the sun gradient.
icon-black.png
"Y" symbol in Evening Blue circle
Functional use: slide footers, small placements, formal contexts
icon-app.png
App icon (Y symbol on rounded-square gradient background)
App references, product mockups
Image Bank (Figma — Photoshoot "New Brand June 2023")
Source: Figma file
VU7niZDEMGOhmquJcpAk2P
The Dayuse Image Bank is the official repository of brand photography for all channels (CRM, Social Media, Website, presentations). It contains 35+ retouched, validated lifestyle photos from the June 2023 brand photoshoot.
Photo Categories & Subjects
Theme
Description
Example IDs
Usage in Slides
Couple en chambre
Couples in hotel rooms: bed, breakfast, petals, relaxation
(311 MB / 460M pixels) a été exclu car trop volumineux. Ré-exporter depuis Figma à ≤4000px de large.
Photo Style Guidelines (for Presentations)
Full-bleed: Use photos as full-slide backgrounds for cover or closing slides
Half-bleed: Photo on one half, content on the other (50/50 split)
Card crop: Crop photos into rounded rectangles (
rectRadius: 0.12
) for cards
Overlay: Photo with gradient text overlay (see
assets/brand-guide/images-best-practice.png
)
Always use brand gradient band at bottom when photo is NOT full-bleed
javascript
// Example — full-bleed photo background with text overlay:slide.addImage({path:"assets/photos/hero_girl_bed_room.jpg",x:0,y:0,w:10,h:5.625});// Add semi-transparent overlay for text readability:slide.addShape(pptx.shapes.RECTANGLE,{x:0,y:3.5,w:10,h:2.125,fill:{color:"292935",transparency:40}});slide.addText("Room to daydream.",{x:0.6,y:3.8,w:8.8,fontSize:36,fontFace:"Manrope",color:"FFFFFF",bold:true});
On-boarding Assets (Figma Reference)
Source: Figma file
XVlA3zCtO7jJ4GI4oaFLCV
(node
445:3150
)
Contains mobile app onboarding screens, splash screens, and UI component variations. Useful as reference for:
Product mockups in pitch decks (screenshot the app screens)
App UI illustrations for product slides
Onboarding flow diagrams for internal roadmap presentations
19 SVG icons with brand gradient fills (orange/coral/yellow). ViewBox 49x49. Used for pitch decks, marketing materials, value propositions. All icons are stored in a single JSON file:
assets/icons/marketing-icons.json
(key = icon name, value = SVG string).
Key
Description
Usage
business
Bar chart with gradient bg
Business metrics, revenue
customer
User silhouette
Customer-related stats
customer-service
Headset agent
Support, service quality
duo
Two people
Couples, social
diamond
Diamond shape
Premium, luxury
free-cancellation
Calendar with cross
Cancellation policy
gift
Gift box
Promotions, offers
hotel
Building
Hotel count, partners
house-traditional
House
Alternative accommodations
international
Globe
International presence
keys
Keys
Access, bookings
leader
Trophy/medal
Market leadership
location
Map pin
Geographic coverage
money
Coins/bills
Revenue, savings
no-card
Crossed credit card
No card required
rated
Star rating
Reviews, ratings
stats-lines
Line chart
Growth trends
stats-pipes
Bar chart
Comparative data
-75pct
Discount tag
Discounts, savings
UI Icons — Design System (assets/icons/ui-icons.json)
Source: Figma Design System v2.0.3 — exported SVGs
184 SVG icons in flat outline style (stroke
#292935
Evening Blue). ViewBox 24x24. Used for all presentation contexts. All icons are stored in a single JSON file:
param. Marketing icons have baked-in brand gradients (linearGradient orange→coral→yellow) — use as-is.
Brand Guide References (assets/brand-guide/)
These are exported Figma pages for visual reference when designing slides:
File
Content
gradients-4types.png
The 4 brand gradients (Generic, Primary, Complementary 1, Complementary 2)
gradient-text-rules.png
Rules for applying gradients ON text (direction: top-left → bottom-right)
gradient-background-rules.png
Rules for applying gradients AS backgrounds (direction: bottom-left → top-right)
hq-gradients.png
HQ angular gradients with background blur for key visuals
typography-best-practice.png
Font hierarchy: Maison Neue (H1), Manrope (H2/body), secondary text rules
typography-colors.png
Color/gradient usage on text with examples
color-spectrum-values.png
Color spectrum with emotional values (Liberté → Bien-être)
color-inspiration-skies.png
Sky photography inspiration for the brand palette
layouts-best-practice.png
Diverse layout examples (portrait, landscape, stories)
images-best-practice.png
Image + gradient text overlay example
Logo Usage Rules (from Figma Brand Guidelines)
CRITICAL RULES:
The symbol (Y icon) and wordmark (DAYUSE text) each have their own place and time. NEVER use them as a lock-up together on the same element. They CAN appear on the same layout, but never combined as one unit.
Functional (Evening Blue versions): for practical uses — website, small sizes, web banners, formal documents
Expressive (Gradient versions): for expressive uses — OOH, social channels, printed merch, hero slides
The expressive core symbol (icon-gradient) can ONLY be used with the sun gradient — never recolor it
Always use the supplied artwork — never try to recreate the wordmark
Step 0: Preprocess Assets (MANDATORY)
Run these steps BEFORE writing any slide code.
Logo — Remove Black Background
The source logos (gradient versions) are RGB with a black background. They MUST be converted to transparent PNG before use, or they will display as an ugly black rectangle on slides.
everywhere. NEVER use the raw asset files directly.
⚠️ CRITICAL — Image & Icon Aspect Ratio (NO DISTORTION)
ALL images and icons MUST maintain their original aspect ratio. Never set both
w
and
h
arbitrarily — always compute one from the other.
javascript
const sharp =require("sharp");// Helper: get image dimensions and compute correct placementasyncfunctionfitImage(imagePath, maxW, maxH){const meta =awaitsharp(imagePath).metadata();const ratio = meta.width/ meta.height;let w, h;if(ratio >= maxW / maxH){// wider than slot → fit to width w = maxW; h = maxW / ratio;}else{// taller than slot → fit to height h = maxH; w = maxH * ratio;}return{ w, h };}// For base64 data (icons from JSON), use the SVG viewBox or known ratio:// UI icons: viewBox 24x24 → ratio 1:1 → ALWAYS use same w and h// Marketing icons: viewBox 49x49 → ratio 1:1 → ALWAYS use same w and h// Photos: use fitImage() helper above// CORRECT — 1:1 iconslide.addImage({data: iconData,x:1,y:1,w:0.5,h:0.5});// CORRECT — photo fitted to slotconst{ w, h }=awaitfitImage("assets/photos/couplepool.jpg",4.5,3.0);slide.addImage({path:"assets/photos/couplepool.jpg",x:0.5,y:1, w, h });// WRONG — arbitrary w/h stretches the imageslide.addImage({path:"assets/photos/couplepool.jpg",x:0.5,y:1,w:4.5,h:3.0});// DISTORTED!
Rules:
Icons (UI + Marketing): Always square
w === h
(they are all 1:1 viewBox)
Photos: Always use
fitImage()
helper or manually compute
h = w / ratio
Logos: Wordmark = 2:1, Symbol = 1:1 (see below)
Logo — Respect the 2:1 Aspect Ratio (Wordmark Only)
The wordmark logos are 2000x1000px = exactly 2:1 ratio. Always maintain this ratio when placing:
Option 2 — react-icons fallback:
When Dayuse icons aren't available as files, use
react-icons/fa
(Font Awesome) with Dayuse brand colors. Check
references/icon-catalog.md
for the react-icons equivalent of each Dayuse icon.
javascript
constReact=require("react");constReactDOMServer=require("react-dom/server");const sharp =require("sharp");const{FaWifi,FaSwimmingPool,FaParking}=require("react-icons/fa");asyncfunctioniconPng(IconComponent, color, size =256){const svg =ReactDOMServer.renderToStaticMarkup(React.createElement(IconComponent,{ color,size:String(size)}));const buf =awaitsharp(Buffer.from(svg)).png().toBuffer();return"image/png;base64,"+ buf.toString("base64");}// Usage with Dayuse palette colors:const wifiIcon =awaiticonPng(FaWifi,"#FDAA9A");// coral for amenitiesconst poolIcon =awaiticonPng(FaSwimmingPool,"#F66236");// orange for leisureconst parkIcon =awaiticonPng(FaParking,"#FEB900");// yellow for functionalslide.addImage({data: wifiIcon,x:1,y:1,w:0.4,h:0.4});
Install deps:
npm install -g react-icons react react-dom sharp
Icon styling rules:
Style: Outline/line icons (matching Dayuse custom style). Do NOT use filled/solid icons unless specifically named "Solid" in the catalog.
UI icons on slides: May be placed inside colored circles (0.4-0.7" diameter) using Dayuse accent colors, OR used standalone
Marketing icons (gradient): Use standalone ONLY — NO colored circle, NO background shape behind them. They already have their own gradient fill and are self-contained.
Color on white bg (UI icons): Use Evening Blue
292935
or accent colors (
F66236
,
FDAA9A
,
FEB900
,
FF003E
)
Color on dark bg (UI icons): Use White
FFFFFF
All icons are 1:1 ratio — always use
w === h
when placing
Step 1: Identify the Deck Type
Ask the user (if not clear) which type of deck they need:
Type
Audience
Language
Tone
Pitch externe
Hoteliers, partenaires, investisseurs
EN or FR
Inspiring, desirable, business value
Reporting interne
Equipe, management, board
FR (primarily)
Data-driven, actionable, honest
Roadmap / Plan d'action
Equipe produit, strat, ops
FR
Vision-first, structured, progressive
Analyse stratégique
Management, cross-functional
FR
Analytical, insight-led, recommendation-oriented
Step 2: Apply the Dayuse Storytelling Framework
CRITICAL: Every Dayuse presentation follows a "Vision-First" narrative arc. Never start with details — always anchor in the WHY before the WHAT and HOW.
Narrative Arc (applies to ALL deck types)
1. VISION / CONTEXTE → Pourquoi on est là, la big picture
2. FRAMEWORK / METHODE → Comment on structure le sujet
3. DONNEES / PREUVES → Les faits, analyses, résultats
4. INSIGHTS / SO WHAT → Ce que ça veut dire concrètement
5. ACTION PLAN / NEXT → Ce qu'on fait maintenant
Structures par Type de Deck
Pitch externe:
Cover (titre + visuel lifestyle)
Dayuse in figures (crédibilité)
Proposition de valeur
Product demo / mockups
Business model
Marketing support
Contact / CTA
Reporting interne:
Titre + date + scope
Rappel vision / objectif
Vue synthétique KPIs
Deep dives par axe / marché
Insights clés
Action plan
Roadmap / Plan d'action:
Vision et ambition
Contexte et enjeux
Etapes clés + jalons temporels
Détail par étape
Next steps + ownership
Analyse stratégique:
Problématique et objectif
Framework / méthodologie
Données et résultats
Synthèse comparative
Recommandations
Step 3: Apply Dayuse Visual Identity
Color Palette
Role
Color
Hex
Texte principal / titres
Evening Blue
292935
Texte secondaire
Gray
54545D
Texte tertiaire
Light Gray
7F7F86
Accent principal (titres highlights, CTA)
Orange
F66236
Accent secondaire
Coral
FDAA9A
Accent tertiaire / urgence
Hot Pink
FF003E
CTA / boutons / énergie
Yellow Gold
FEB900
Fond encarts takeaway
Rose pâle
FFE5EA
Fond encarts bloc
Beige clair
F5F0E8
Fond cards
Off-white
F8F8F8
Color Coding par Use Case
Leisure = Coral
FDAA9A
Fonctionnel = Orange
F66236
Travel = Yellow
FEB900
Work = Hot Pink
FF003E
Accent Palette (5 couleurs)
Les 5 couleurs d'accent à utiliser pour les graphiques, badges, tags, cercles d'icônes :
FDAA9A
— Coral (doux, secondaire)
F66236
— Orange (principal, énergie)
FEB900
— Yellow Gold (CTA, attention)
FF003E
— Hot Pink (urgence, contraste)
FFE5EA
— Rose pâle (fonds, encarts)
Note : les anciens bleus (
51B0B0
,
3597C8
) et le violet (
6E69AC
) ne font plus partie de la palette d'accent. Utiliser uniquement la gamme chaude ci-dessus.
Color Spectrum (Emotional)
Le spectre de couleurs Dayuse représente un voyage émotionnel (de gauche à droite) :
Droite (frais): Bien-être, Ciel, Paisibilité, Calme, Temps pour soi, Ressource
Contrast Rule (from Figma)
"Font should always maximise lisibility and strong contrast." Always alternate:
Dark text (
292935
) on light backgrounds (
FFFFFF
,
F8F8F8
, gradients clairs)
White text (
FFFFFF
) on dark backgrounds (
292935
), colored backgrounds (Yellow, Orange, Hot Pink), or gradient backgrounds
BACKGROUND RULES (CRITICAL)
Evening Blue (
292935
) is FORBIDDEN as a slide background. It is a TEXT color only.
Allowed slide backgrounds:
FFFFFF
(white) — default for ALL content slides
F8F8F8
(off-white) — subtle variation
Brand gradient backgrounds — for section divider slides ONLY (WHY? / HOW? transitions)
FEB900
(yellow) — for bold statement slides (e.g. "Only 3% of French people have heard of Dayuse")
A lifestyle photo as full-bleed background (for closing slides)
The only exception where
292935
can be used as a SHAPE fill (not slide bg) is for small accent elements like the "Victor Barnouin" card or data pill badges.
Typography — Manrope Only (Google Slides Compatible)
IMPORTANT: The Figma brand guidelines specify Maison Neue Extended Bold for H1 titles, but since Dayuse presentations are delivered via Google Slides, Maison Neue is NOT available and NOT editable there. Therefore ALL text uses Manrope (Google Font, fully compatible with Google Slides).
The hierarchy below adapts the Figma brand sizing/weight rules to Manrope only.
Title Level 1 (Hero): Manrope ExtraBold
For hero titles, section divider text, bold statements. Replaces Maison Neue in PPTX context.
Font: Manrope ExtraBold (weight 800)
Size: 36-48pt
Line Height: tight (1.1x)
Letter Spacing: 0%
Color: 292935 (or FFFFFF on dark/gradient backgrounds)
Title Level 2 (Slide Title): Manrope Bold
For slide titles, section sub-headers. The "insight title" used on most content slides.
Font: Manrope Bold (weight 700)
Size: 24-30pt
Line Height: 1.2x
Letter Spacing: 0%
Color: 292935 (key words in F66236)
Subtitle: Manrope SemiBold
For slide subtitles, chapeau text above titles.
Font: Manrope SemiBold (weight 600)
Size: 16-20pt
Line Height: 1.3x
Letter Spacing: 0%
Color: 54545D
Running Text: Manrope Regular
For body text, descriptions, explanations.
Font: Manrope Regular (weight 400)
Size: 12-14pt
Line Height: 22
Letter Spacing: 1%
Color: 54545D
Secondary Text: Manrope Bold (FULL CAPS)
For CTAs, signatures, chapeau labels, important secondary messages. Always uppercase with letter spacing.
Font: Manrope Bold (weight 700)
Size: variable (typically 10-14pt)
Letter Spacing: 17%
Transform: UPPERCASE
Color: 292935 or 7F7F86
Example:
MADE WITH LOVE AT DAYUSE
/
ROOM TO DAYDREAM
/
VIEW OUR HOTELS
Full Typography Reference Table
Element
fontFace
Size
Weight
Color
Notes
Hero title (H1)
"Manrope"
36-48pt
800 (ExtraBold)
292935
Section dividers, covers. Can use gradient as image mask
Slide title (H2)
"Manrope"
24-30pt
700 (Bold)
292935
Key words in
F66236
Subtitle
"Manrope"
16-20pt
600 (SemiBold)
54545D
Body text
"Manrope"
12-14pt
400 (Regular)
54545D
Line height 22, spacing 1%
Labels / captions
"Manrope"
10-11pt
500 (Medium)
7F7F86
Big KPI numbers
"Manrope"
36-48pt
700 (Bold)
292935
Label under KPI
"Manrope"
11pt
400 (Regular)
7F7F86
CTA / Signature
"Manrope"
11-12pt
700 (Bold)
292935
FULL CAPS, 17% letter spacing
CTA button text
"Manrope"
11-12pt
700 (Bold)
FFFFFF
Inside colored shape
Section divider text
"Manrope"
60-80pt
800 (ExtraBold)
FFFFFF
On gradient backgrounds
Orange highlight words
"Manrope"
same as parent
700 (Bold)
F66236
Within titles only
Titre-Insight Pattern (OBLIGATOIRE)
Every slide title MUST be an insight (a conclusion), NOT a descriptive label.
WRONG: "Analyse USA"
RIGHT: "Les hôtels Travel drivent la dynamique nouveaux clients."
WRONG: "Résultats Q3"
RIGHT: "Le Travel comme générateur de valeur : +59% de croissance."
WRONG: "Distribution hôtel"
RIGHT: "Un parc mondial principalement Fonctionnel aujourd'hui."
Implementation: Title text in Evening Blue bold + key words in Orange bold to guide the eye.
javascript
slide.addText([{text:"L'IA gère le ",options:{fontSize:26,fontFace:"Manrope",color:"292935",bold:true}},{text:"volume",options:{fontSize:26,fontFace:"Manrope",color:"F66236",bold:true}},{text:", l'humain gère ",options:{fontSize:26,fontFace:"Manrope",color:"292935",bold:true}},{text:"l'exception.",options:{fontSize:26,fontFace:"Manrope",color:"F66236",bold:true}},],{x:0.6,y:0.3,w:8.8,h:0.8,margin:0});
The 4 Brand Gradients
Reference:
assets/brand-guide/gradients-4types.png
Gradient
Colors
When to Use
Generic
#FEB900
→
#FD7030
→
#FDAA9A
→
#B7D5D5
Brand statements, logo, signature elements. Full spectrum = balance between all polarities
Primary
#FEB900
→
#FD7030
→
#FDAA9A
Affirm brand identity simply. Use when energy/intensity is the message. "Be careful, sometimes it's too hot to be used"
Complementary 1
Blues/teals spectrum
Balance in an ensemble of visual, webpage, brochure pages
Complementary 2
Corail → Violet
Balance in an ensemble of visual, webpage, brochure pages
Gradient Usage Rules (from Figma)
On text: Direction top-left → bottom-right (reading direction). Gradients can ONLY be used on hero titles (Manrope ExtraBold 800) as a title or main message. Never apply gradient to body text or secondary elements.
On backgrounds: Direction bottom-left → top-right. Should generally NOT be used with an image on top (exception: for balance).
HQ Gradients: For key visuals, use angular gradients with background blur overlay. These create a more diffuse, organic look suited for non-print, non-functional use.
Gradient Text in PptxGenJS
Since PptxGenJS doesn't natively support gradient text, simulate it by rendering gradient text as a PNG image:
Logo déformé / écrasé :
→ Ratio non respecté. Wordmark:
h = w / 2
. Symbol:
h = w
.
Font ne s'affiche pas :
→ Manrope non installée sur la machine cible. Installer depuis Google Fonts. Google Slides la supporte nativement.
Gradient text doesn't render :
→ PptxGenJS ne supporte pas le texte gradient nativement. Utiliser la fonction
makeGradientText()
pour générer un PNG. Vérifier que
sharp
est installé.
Icônes invisibles (blanches sur blanc) :
→ Les icônes blanches doivent être dans un cercle coloré. Ne jamais placer une icône blanche directement sur fond blanc.
SVG icons depuis JSON :
→ Les icônes sont dans
ui-icons.json
et
marketing-icons.json
. Utiliser les helpers
uiIconPng(name)
et
marketingIconPng(name)
. Les clés sont sans extension :
"wifi"
,
"nav-check"
,
"ind-star"
,
"hotel"
.
Photo trop lourde / lente :
→ Les photos haute-res peuvent ralentir le PPTX. Utiliser
sharp
pour redimensionner avant insertion :
sharp(photo).resize(1920).jpeg({ quality: 80 })
.
SVG icons invisible sur fond blanc :
→ Les icônes UI sont en stroke
#292935
. Sur fond blanc elles sont visibles. Si nécessaire, recolorer le stroke dans le SVG avant conversion PNG.
Deck manque d'impact :
→ Chaque slide doit avoir un élément visuel
→ Augmenter contraste titre (32pt+) vs corps (14pt)
→ Utiliser encarts colorés pour takeaways
→ Ajouter au moins 1-2 section dividers avec gradient background
Storytelling plat :
→ Revérifier arc Vision-First
→ Titres = conclusions, pas sujets
→ Ajouter transitions entre sections (gradient divider slides)
→ Use bold statement slides (yellow bg) for impactful data points