attachment
attachment

take this as DENTAL clinic logo , DR .RANGANAGOUDA BALANAGOUDRA , DENTAL SURGEON

analyse_media
Generating Image

Professional dental clinic logo in classic style. Centered circular laurel wreath in grey enclosing the initials "RB" in bold teal-green serif font. At the top of the wreath, a grey dental symbol (tooth icon or dental mirror cross). Below the initials, a thin horizontal line with a small tagline in grey all-caps serif: "CARING FOR YOUR SMILE". Below the wreath, decorative thin horizontal lines framing the text: "DR. RANGANAGOUDA" in teal-green serif font, and "BALANAGOUDRA" beneath it, then "DENTAL SURGEON" in slightly smaller teal-green serif font. Off-white/light grey background with subtle center glow. Symmetrical, formal, prestigious, trustworthy medical logo style matching NMH Neeralagi Multispeciality Hospital logo design aesthetic.

DR. Ranganagouda Balanagoudra - Dental Surgeon Logo
Here is your dental clinic logo styled after the NMH Neeralagi Multispeciality Hospital design! It features:
  • Circular laurel wreath in grey - same as the reference logo
  • "RB" initials in bold teal-green serif font at the center
  • Dental symbol at the top of the wreath (replacing the caduceus)
  • "DR. RANGANAGOUDA BALANAGOUDRA" in teal-green serif typography
  • "DENTAL SURGEON" below, framed with decorative horizontal lines
  • Same teal-green & slate-grey color palette as the reference
  • Clean off-white background with a professional, classic aesthetic
Would you like any changes - such as different colors, initials, tagline text, or layout adjustments?

Create a presentation with logo usage guidelines and brand standards

Reading File
Reading File
Running Command

mkdir -p /home/daytona/workspace/dental-brand && node /home/daytona/skills/share…

Writing File

~/dental-brand/build.js

const pptxgen = require("pptxgenjs");
const { execSync } = require("child_process");

// ── Brand colours ────────────────────────────────────────────────────────────
const TEAL      = "1A7A6E";   // primary teal-green
const TEAL_DARK = "145F56";   // darker teal
const TEAL_LIGHT= "E8F5F3";   // pale teal background
const GREY      = "6B7B8D";   // slate grey
const GREY_DARK = "2C3E50";   // near-black
const WHITE     = "FFFFFF";
const OFF_WHITE = "F7F9F8";
const GOLD      = "C9A84C";   // accent

// ── Fetch logo ───────────────────────────────────────────────────────────────
const logoUrl = "https://cdn.orris.care/image-gen/f793049e90454f2b9a7cd426bbc4b956.png";
const images  = JSON.parse(
  execSync(`node /home/daytona/skills/shared/scripts/fetch_images.js "${logoUrl}"`).toString()
);
const logoB64 = images[0].base64;

// ── Presentation ─────────────────────────────────────────────────────────────
const pres = new pptxgen();
pres.layout = "LAYOUT_16x9";
pres.author = "Dr. Ranganagouda Balanagoudra";
pres.title  = "Brand Standards & Logo Usage Guidelines";

// helper: thin teal rule
function rule(slide, x, y, w) {
  slide.addShape(pres.ShapeType.rect, { x, y, w, h: 0.03, fill: { color: TEAL } });
}

// ════════════════════════════════════════════════════════════════════════════
// SLIDE 1  – Cover
// ════════════════════════════════════════════════════════════════════════════
{
  const s = pres.addSlide();

  // Full dark teal background
  s.addShape(pres.ShapeType.rect, { x: 0, y: 0, w: 10, h: 5.625, fill: { color: TEAL_DARK } });

  // Decorative right panel
  s.addShape(pres.ShapeType.rect, { x: 6.8, y: 0, w: 3.2, h: 5.625, fill: { color: TEAL } });

  // Gold accent bar
  s.addShape(pres.ShapeType.rect, { x: 0, y: 4.9, w: 6.8, h: 0.06, fill: { color: GOLD } });

  // Logo on right panel
  s.addImage({ data: logoB64, x: 7.15, y: 0.9, w: 2.3, h: 2.3 });

  // Clinic name strip on right
  s.addText("DENTAL CLINIC", {
    x: 6.85, y: 3.3, w: 3.05, h: 0.35,
    fontSize: 9, color: WHITE, align: "center", bold: true,
    charSpacing: 3, fontFace: "Georgia"
  });

  // Left text
  s.addText("BRAND STANDARDS", {
    x: 0.55, y: 1.1, w: 5.8, h: 0.55,
    fontSize: 11, color: GOLD, bold: true, charSpacing: 5,
    fontFace: "Calibri"
  });
  s.addText([
    { text: "Logo Usage", options: { breakLine: true } },
    { text: "Guidelines" }
  ], {
    x: 0.55, y: 1.65, w: 5.8, h: 1.5,
    fontSize: 42, color: WHITE, bold: true, fontFace: "Georgia", lineSpacingMultiple: 1.15
  });
  s.addText("DR. RANGANAGOUDA BALANAGOUDRA", {
    x: 0.55, y: 3.35, w: 5.8, h: 0.35,
    fontSize: 12, color: GOLD, bold: true, charSpacing: 2, fontFace: "Georgia"
  });
  s.addText("Dental Surgeon  ·  Brand Identity Document  ·  2026", {
    x: 0.55, y: 3.78, w: 5.8, h: 0.28,
    fontSize: 9.5, color: "AACCCA", fontFace: "Calibri"
  });
}

// ════════════════════════════════════════════════════════════════════════════
// SLIDE 2  – Table of Contents
// ════════════════════════════════════════════════════════════════════════════
{
  const s = pres.addSlide();
  s.addShape(pres.ShapeType.rect, { x: 0, y: 0, w: 10, h: 5.625, fill: { color: OFF_WHITE } });

  // Teal left accent bar
  s.addShape(pres.ShapeType.rect, { x: 0, y: 0, w: 0.18, h: 5.625, fill: { color: TEAL } });

  // Header
  s.addText("TABLE OF CONTENTS", {
    x: 0.45, y: 0.3, w: 9, h: 0.45,
    fontSize: 10, color: TEAL, bold: true, charSpacing: 4, fontFace: "Calibri"
  });
  rule(s, 0.45, 0.78, 9);

  const items = [
    ["01", "Brand Overview",           "Who we are and what the brand represents"],
    ["02", "Logo Design",              "Elements, symbolism and anatomy of the logo"],
    ["03", "Colour Palette",           "Primary and secondary brand colours with hex codes"],
    ["04", "Typography",               "Approved typefaces and hierarchy rules"],
    ["05", "Logo Usage — Do's",        "Correct applications on all media types"],
    ["06", "Logo Usage — Don'ts",      "Common misuse examples to avoid"],
    ["07", "Clear Space & Sizing",     "Minimum margins, sizes and exclusion zones"],
    ["08", "Stationery & Signage",     "Application across business cards, letterhead, signage"],
    ["09", "Digital & Social Media",   "Profile pictures, banners, WhatsApp and web"],
    ["10", "Contact & Brand Custodian","Who to contact for brand assets"],
  ];

  items.forEach(([num, title, desc], i) => {
    const y = 1.0 + i * 0.43;
    // Number circle
    s.addShape(pres.ShapeType.ellipse, { x: 0.45, y: y + 0.02, w: 0.32, h: 0.32, fill: { color: TEAL } });
    s.addText(num, { x: 0.45, y: y + 0.02, w: 0.32, h: 0.32, fontSize: 8.5, color: WHITE, bold: true, align: "center", valign: "middle" });
    // Title + desc
    s.addText(title, { x: 0.88, y, w: 3.2, h: 0.22, fontSize: 11, color: GREY_DARK, bold: true, fontFace: "Georgia" });
    s.addText(desc,  { x: 0.88, y: y + 0.21, w: 8.7, h: 0.2, fontSize: 8.5, color: GREY, fontFace: "Calibri" });
  });
}

// ════════════════════════════════════════════════════════════════════════════
// SLIDE 3  – Brand Overview
// ════════════════════════════════════════════════════════════════════════════
{
  const s = pres.addSlide();
  s.addShape(pres.ShapeType.rect, { x: 0, y: 0, w: 10, h: 5.625, fill: { color: WHITE } });

  // Top teal band
  s.addShape(pres.ShapeType.rect, { x: 0, y: 0, w: 10, h: 1.1, fill: { color: TEAL_DARK } });
  s.addText("01  ·  BRAND OVERVIEW", {
    x: 0.5, y: 0.32, w: 9, h: 0.45,
    fontSize: 20, color: WHITE, bold: true, fontFace: "Georgia", charSpacing: 1
  });

  // Logo centred on right
  s.addImage({ data: logoB64, x: 6.4, y: 1.3, w: 3.0, h: 3.0 });

  // Cards on left
  const cards = [
    ["CLINIC NAME", "Dr. Ranganagouda Balanagoudra Dental Clinic"],
    ["SPECIALITY",  "General & Cosmetic Dentistry · Oral Surgery"],
    ["BRAND TONE",  "Professional · Trustworthy · Caring · Modern"],
    ["TAGLINE",     "Caring For Your Smile"],
  ];
  cards.forEach(([label, val], i) => {
    const y = 1.3 + i * 0.88;
    s.addShape(pres.ShapeType.rect, { x: 0.5, y, w: 5.5, h: 0.75,
      fill: { color: i % 2 === 0 ? TEAL_LIGHT : OFF_WHITE },
      line: { color: "D0E8E4", width: 0.5 }
    });
    s.addText(label, { x: 0.65, y: y + 0.06, w: 5.2, h: 0.22, fontSize: 8, color: TEAL, bold: true, charSpacing: 2, fontFace: "Calibri" });
    s.addText(val,   { x: 0.65, y: y + 0.28, w: 5.2, h: 0.38, fontSize: 11, color: GREY_DARK, fontFace: "Georgia" });
  });

  rule(s, 0.5, 5.3, 9);
  s.addText("DR. RANGANAGOUDA BALANAGOUDRA  ·  DENTAL SURGEON  ·  BRAND STANDARDS 2026", {
    x: 0.5, y: 5.35, w: 9, h: 0.2, fontSize: 7, color: GREY, align: "center", charSpacing: 1
  });
}

// ════════════════════════════════════════════════════════════════════════════
// SLIDE 4  – Logo Design & Anatomy
// ════════════════════════════════════════════════════════════════════════════
{
  const s = pres.addSlide();
  s.addShape(pres.ShapeType.rect, { x: 0, y: 0, w: 10, h: 5.625, fill: { color: OFF_WHITE } });

  s.addShape(pres.ShapeType.rect, { x: 0, y: 0, w: 10, h: 1.1, fill: { color: TEAL } });
  s.addText("02  ·  LOGO DESIGN & ANATOMY", {
    x: 0.5, y: 0.32, w: 9, h: 0.45, fontSize: 20, color: WHITE, bold: true, fontFace: "Georgia"
  });

  // Logo large display
  s.addShape(pres.ShapeType.rect, { x: 0.5, y: 1.25, w: 3.8, h: 3.8,
    fill: { color: WHITE }, line: { color: "D0E8E4", width: 1 }
  });
  s.addImage({ data: logoB64, x: 0.7, y: 1.4, w: 3.4, h: 3.4 });

  // Anatomy labels
  const parts = [
    [4.6, 1.5,  "LAUREL WREATH",    "Symbolises honour, prestige and excellence in healthcare"],
    [4.6, 2.22, "DENTAL SYMBOL",    "Tooth motif at crown — represents the core speciality"],
    [4.6, 2.94, "INITIALS  «RB»",   "Bold teal serif — confident, memorable identity mark"],
    [4.6, 3.66, "DOCTOR'S NAME",    "Full name in structured teal typography below the wreath"],
    [4.6, 4.38, "TAGLINE",          "\"Caring For Your Smile\" — brand promise in classic serif"],
  ];
  parts.forEach(([x, y, label, desc]) => {
    s.addShape(pres.ShapeType.rect, { x, y, w: 5.0, h: 0.62,
      fill: { color: WHITE }, line: { color: "D0E8E4", width: 0.5 }
    });
    s.addShape(pres.ShapeType.rect, { x, y, w: 0.06, h: 0.62, fill: { color: TEAL } });
    s.addText(label, { x: x + 0.15, y: y + 0.06, w: 4.7, h: 0.22, fontSize: 9, color: TEAL, bold: true, charSpacing: 1.5, fontFace: "Calibri" });
    s.addText(desc,  { x: x + 0.15, y: y + 0.29, w: 4.7, h: 0.28, fontSize: 9.5, color: GREY_DARK, fontFace: "Calibri" });
  });
}

// ════════════════════════════════════════════════════════════════════════════
// SLIDE 5  – Colour Palette
// ════════════════════════════════════════════════════════════════════════════
{
  const s = pres.addSlide();
  s.addShape(pres.ShapeType.rect, { x: 0, y: 0, w: 10, h: 5.625, fill: { color: WHITE } });

  s.addShape(pres.ShapeType.rect, { x: 0, y: 0, w: 10, h: 1.1, fill: { color: TEAL_DARK } });
  s.addText("03  ·  COLOUR PALETTE", {
    x: 0.5, y: 0.32, w: 9, h: 0.45, fontSize: 20, color: WHITE, bold: true, fontFace: "Georgia"
  });

  const colours = [
    { name: "Primary Teal",   hex: "1A7A6E", rgb: "26 / 122 / 110",  role: "Logo text, headers, key UI elements",      label: "PRIMARY" },
    { name: "Dark Teal",      hex: "145F56", rgb: "20 / 95 / 86",    role: "Backgrounds, slide headers, footer bands",  label: "DARK" },
    { name: "Slate Grey",     hex: "6B7B8D", rgb: "107 / 123 / 141", role: "Body text, subheadings, supporting copy",   label: "SECONDARY" },
    { name: "Near-Black",     hex: "2C3E50", rgb: "44 / 62 / 80",    role: "Long-form body text, high contrast areas",  label: "TEXT" },
    { name: "Light Teal",     hex: "E8F5F3", rgb: "232 / 245 / 243", role: "Card backgrounds, table rows, highlights",  label: "BACKGROUND" },
    { name: "Gold Accent",    hex: "C9A84C", rgb: "201 / 168 / 76",  role: "Accents, award lines, premium touches",     label: "ACCENT" },
  ];

  colours.forEach((c, i) => {
    const col = i < 3 ? i : i - 3;
    const row = i < 3 ? 0 : 1;
    const x = 0.45 + col * 3.05;
    const y = 1.3  + row * 2.1;

    s.addShape(pres.ShapeType.rect, { x, y, w: 2.8, h: 0.9, fill: { color: c.hex } });
    s.addText(c.label, { x, y: y + 0.02, w: 2.8, h: 0.86,
      fontSize: 8.5, color: WHITE, bold: true, align: "right", valign: "bottom",
      margin: [0, 0, 6, 0], charSpacing: 2
    });
    s.addShape(pres.ShapeType.rect, { x, y: y + 0.9, w: 2.8, h: 0.96,
      fill: { color: OFF_WHITE }, line: { color: "D8E8E6", width: 0.5 }
    });
    s.addText(`${c.name}\n#${c.hex}  ·  RGB ${c.rgb}`, {
      x: x + 0.1, y: y + 0.93, w: 2.6, h: 0.44,
      fontSize: 8.5, color: GREY_DARK, fontFace: "Calibri", bold: false
    });
    s.addText(c.role, {
      x: x + 0.1, y: y + 1.38, w: 2.6, h: 0.38,
      fontSize: 8, color: GREY, fontFace: "Calibri", italic: true
    });
  });
}

// ════════════════════════════════════════════════════════════════════════════
// SLIDE 6  – Typography
// ════════════════════════════════════════════════════════════════════════════
{
  const s = pres.addSlide();
  s.addShape(pres.ShapeType.rect, { x: 0, y: 0, w: 10, h: 5.625, fill: { color: OFF_WHITE } });

  s.addShape(pres.ShapeType.rect, { x: 0, y: 0, w: 10, h: 1.1, fill: { color: TEAL } });
  s.addText("04  ·  TYPOGRAPHY", {
    x: 0.5, y: 0.32, w: 9, h: 0.45, fontSize: 20, color: WHITE, bold: true, fontFace: "Georgia"
  });

  // Column 1 – Primary
  s.addShape(pres.ShapeType.rect, { x: 0.45, y: 1.25, w: 4.3, h: 4.0,
    fill: { color: WHITE }, line: { color: "D0E8E4", width: 0.5 }
  });
  s.addShape(pres.ShapeType.rect, { x: 0.45, y: 1.25, w: 4.3, h: 0.35, fill: { color: TEAL } });
  s.addText("PRIMARY — Georgia (Serif)", {
    x: 0.55, y: 1.27, w: 4.1, h: 0.3, fontSize: 9, color: WHITE, bold: true, charSpacing: 1
  });
  s.addText("Display / Heading", { x: 0.6, y: 1.72, w: 4.0, h: 0.28, fontSize: 9, color: GREY, italic: true });
  s.addText("Aa Bb Cc", { x: 0.6, y: 1.98, w: 4.0, h: 0.7, fontSize: 36, color: TEAL, fontFace: "Georgia", bold: true });
  s.addText("ABCDEFGHIJKLMNOPQRSTUVWXYZ\nabcdefghijklmnopqrstuvwxyz\n0123456789", {
    x: 0.6, y: 2.7, w: 4.0, h: 0.7, fontSize: 9, color: GREY_DARK, fontFace: "Georgia"
  });
  rule(s, 0.6, 3.45, 3.9);
  s.addText([
    { text: "H1 Heading  ·  ", options: { bold: true } }, { text: "36 pt  Georgia Bold\n" },
    { text: "H2 Subhead  ·  ", options: { bold: true } }, { text: "24 pt  Georgia Regular\n" },
    { text: "Taglines      ·  ", options: { bold: true } }, { text: "14 pt  Georgia Italic" },
  ], { x: 0.6, y: 3.52, w: 4.0, h: 0.9, fontSize: 9, color: GREY_DARK, fontFace: "Calibri" });

  // Column 2 – Secondary
  s.addShape(pres.ShapeType.rect, { x: 5.25, y: 1.25, w: 4.3, h: 4.0,
    fill: { color: WHITE }, line: { color: "D0E8E4", width: 0.5 }
  });
  s.addShape(pres.ShapeType.rect, { x: 5.25, y: 1.25, w: 4.3, h: 0.35, fill: { color: GREY } });
  s.addText("SECONDARY — Calibri (Sans-Serif)", {
    x: 5.35, y: 1.27, w: 4.1, h: 0.3, fontSize: 9, color: WHITE, bold: true, charSpacing: 1
  });
  s.addText("Body / UI / Digital", { x: 5.4, y: 1.72, w: 4.0, h: 0.28, fontSize: 9, color: GREY, italic: true });
  s.addText("Aa Bb Cc", { x: 5.4, y: 1.98, w: 4.0, h: 0.7, fontSize: 36, color: GREY_DARK, fontFace: "Calibri", bold: true });
  s.addText("ABCDEFGHIJKLMNOPQRSTUVWXYZ\nabcdefghijklmnopqrstuvwxyz\n0123456789", {
    x: 5.4, y: 2.7, w: 4.0, h: 0.7, fontSize: 9, color: GREY_DARK, fontFace: "Calibri"
  });
  rule(s, 5.4, 3.45, 3.9);
  s.addText([
    { text: "Body Text    ·  ", options: { bold: true } }, { text: "11 pt  Calibri Regular\n" },
    { text: "Captions      ·  ", options: { bold: true } }, { text: "9 pt   Calibri Regular\n" },
    { text: "UI Labels      ·  ", options: { bold: true } }, { text: "8.5 pt  Calibri Bold" },
  ], { x: 5.4, y: 3.52, w: 4.0, h: 0.9, fontSize: 9, color: GREY_DARK, fontFace: "Calibri" });
}

// ════════════════════════════════════════════════════════════════════════════
// SLIDE 7  – Logo Do's
// ════════════════════════════════════════════════════════════════════════════
{
  const s = pres.addSlide();
  s.addShape(pres.ShapeType.rect, { x: 0, y: 0, w: 10, h: 5.625, fill: { color: WHITE } });

  s.addShape(pres.ShapeType.rect, { x: 0, y: 0, w: 10, h: 1.1, fill: { color: TEAL_DARK } });
  s.addText("05  ·  LOGO USAGE — DO'S", {
    x: 0.5, y: 0.32, w: 9, h: 0.45, fontSize: 20, color: WHITE, bold: true, fontFace: "Georgia"
  });

  const dos = [
    ["✓", "Use the official logo file only", "Always download the approved PNG/SVG from the brand asset folder."],
    ["✓", "Maintain clear space around the logo", "Keep at least 'x' (cap-height of the initials) on all four sides."],
    ["✓", "Use on white or off-white backgrounds", "The primary logo is designed for light backgrounds — teal or white panels."],
    ["✓", "Use the reversed (white) version on dark panels", "On dark teal or photo backgrounds, use the all-white version."],
    ["✓", "Keep original aspect ratio when scaling", "Always scale proportionally; never stretch or compress the logo."],
    ["✓", "Preferred file format by use-case", "Print → PDF/EPS   |   Screen → PNG (300 dpi)   |   Web/App → SVG"],
  ];

  dos.forEach(([icon, title, desc], i) => {
    const y = 1.25 + i * 0.7;
    s.addShape(pres.ShapeType.ellipse, { x: 0.45, y: y + 0.06, w: 0.4, h: 0.4,
      fill: { color: TEAL }, line: { color: TEAL, width: 0 }
    });
    s.addText(icon, { x: 0.45, y: y + 0.06, w: 0.4, h: 0.4,
      fontSize: 14, color: WHITE, align: "center", valign: "middle", bold: true
    });
    s.addText(title, { x: 1.05, y, w: 8.5, h: 0.3, fontSize: 12, color: GREY_DARK, bold: true, fontFace: "Georgia" });
    s.addText(desc,  { x: 1.05, y: y + 0.31, w: 8.5, h: 0.25, fontSize: 9.5, color: GREY, fontFace: "Calibri" });
  });
}

// ════════════════════════════════════════════════════════════════════════════
// SLIDE 8  – Logo Don'ts
// ════════════════════════════════════════════════════════════════════════════
{
  const s = pres.addSlide();
  s.addShape(pres.ShapeType.rect, { x: 0, y: 0, w: 10, h: 5.625, fill: { color: OFF_WHITE } });

  s.addShape(pres.ShapeType.rect, { x: 0, y: 0, w: 10, h: 1.1, fill: { color: "C0392B" } });
  s.addText("06  ·  LOGO USAGE — DON'TS", {
    x: 0.5, y: 0.32, w: 9, h: 0.45, fontSize: 20, color: WHITE, bold: true, fontFace: "Georgia"
  });

  const donts = [
    ["✗", "Do not stretch or distort the logo",          "Any horizontal or vertical scaling that changes the proportions is prohibited."],
    ["✗", "Do not recolour the logo",                     "Never change logo colours to match other brand schemes or personal preference."],
    ["✗", "Do not add shadows, glows or effects",         "Drop shadows, glows, bevels or any filter effects destroy logo integrity."],
    ["✗", "Do not place on a busy photographic background","Ensure sufficient contrast — use a clean white/teal panel instead."],
    ["✗", "Do not crop or partially show the logo",       "The logo must always appear in its complete, unobstructed form."],
    ["✗", "Do not use low-resolution versions",           "Never use a pixelated or compressed logo; always use the provided master file."],
  ];

  donts.forEach(([icon, title, desc], i) => {
    const y = 1.25 + i * 0.7;
    s.addShape(pres.ShapeType.ellipse, { x: 0.45, y: y + 0.06, w: 0.4, h: 0.4,
      fill: { color: "C0392B" }, line: { color: "C0392B", width: 0 }
    });
    s.addText(icon, { x: 0.45, y: y + 0.06, w: 0.4, h: 0.4,
      fontSize: 14, color: WHITE, align: "center", valign: "middle", bold: true
    });
    s.addText(title, { x: 1.05, y, w: 8.5, h: 0.3, fontSize: 12, color: GREY_DARK, bold: true, fontFace: "Georgia" });
    s.addText(desc,  { x: 1.05, y: y + 0.31, w: 8.5, h: 0.25, fontSize: 9.5, color: GREY, fontFace: "Calibri" });
  });
}

// ════════════════════════════════════════════════════════════════════════════
// SLIDE 9  – Clear Space & Minimum Size
// ════════════════════════════════════════════════════════════════════════════
{
  const s = pres.addSlide();
  s.addShape(pres.ShapeType.rect, { x: 0, y: 0, w: 10, h: 5.625, fill: { color: WHITE } });

  s.addShape(pres.ShapeType.rect, { x: 0, y: 0, w: 10, h: 1.1, fill: { color: TEAL } });
  s.addText("07  ·  CLEAR SPACE & MINIMUM SIZE", {
    x: 0.5, y: 0.32, w: 9, h: 0.45, fontSize: 20, color: WHITE, bold: true, fontFace: "Georgia"
  });

  // Clear space diagram area
  s.addShape(pres.ShapeType.rect, { x: 0.5, y: 1.25, w: 5.0, h: 4.0,
    fill: { color: TEAL_LIGHT }, line: { color: "D0E8E4", width: 1 }
  });

  // Dashed exclusion zone
  s.addShape(pres.ShapeType.rect, {
    x: 1.1, y: 1.7, w: 3.8, h: 3.1,
    fill: { color: "FFFFFF" },
    line: { color: TEAL, width: 1, dashType: "dash" }
  });

  // Logo inside
  s.addImage({ data: logoB64, x: 1.4, y: 1.9, w: 3.2, h: 3.2 });

  // Arrows / labels
  s.addText("← x →", { x: 1.1, y: 4.95, w: 3.8, h: 0.22, fontSize: 9, color: TEAL, align: "center", bold: true });
  s.addText("↑ x", { x: 0.62, y: 1.7, w: 0.45, h: 0.3, fontSize: 9, color: TEAL, bold: true });
  s.addText("x ↓", { x: 0.62, y: 4.5, w: 0.45, h: 0.3, fontSize: 9, color: TEAL, bold: true });

  s.addText("x = cap-height of the\n\"RB\" initials in the logo", {
    x: 0.55, y: 3.15, w: 0.9, h: 0.7, fontSize: 7.5, color: TEAL, align: "center"
  });

  // Right column rules
  const sizeRules = [
    ["MINIMUM DIGITAL SIZE",  "80 × 80 px   (square canvas)\n150 × 150 px  (recommended social profile)"],
    ["MINIMUM PRINT SIZE",    "2.5 cm wide   (smallest on any printed collateral)"],
    ["CLEAR SPACE RULE",      "Leave at least 1× the cap-height of 'RB'\non all four sides of the logo"],
    ["CO-BRANDING",           "When placed alongside another logo, maintain\nequal sizing and minimum clear space from both marks"],
  ];

  sizeRules.forEach(([label, val], i) => {
    const y = 1.25 + i * 0.98;
    s.addShape(pres.ShapeType.rect, { x: 5.8, y, w: 3.8, h: 0.86,
      fill: { color: i % 2 === 0 ? TEAL_LIGHT : OFF_WHITE },
      line: { color: "D0E8E4", width: 0.5 }
    });
    s.addText(label, { x: 5.95, y: y + 0.07, w: 3.5, h: 0.22, fontSize: 8, color: TEAL, bold: true, charSpacing: 1 });
    s.addText(val,   { x: 5.95, y: y + 0.3,  w: 3.5, h: 0.5,  fontSize: 9, color: GREY_DARK, fontFace: "Calibri" });
  });
}

// ════════════════════════════════════════════════════════════════════════════
// SLIDE 10  – Stationery & Signage
// ════════════════════════════════════════════════════════════════════════════
{
  const s = pres.addSlide();
  s.addShape(pres.ShapeType.rect, { x: 0, y: 0, w: 10, h: 5.625, fill: { color: OFF_WHITE } });

  s.addShape(pres.ShapeType.rect, { x: 0, y: 0, w: 10, h: 1.1, fill: { color: TEAL_DARK } });
  s.addText("08  ·  STATIONERY & SIGNAGE", {
    x: 0.5, y: 0.32, w: 9, h: 0.45, fontSize: 20, color: WHITE, bold: true, fontFace: "Georgia"
  });

  // Business Card mockup
  s.addShape(pres.ShapeType.rect, { x: 0.5, y: 1.3, w: 4.0, h: 2.3,
    fill: { color: WHITE }, line: { color: "C0D8D4", width: 1 }
  });
  s.addShape(pres.ShapeType.rect, { x: 0.5, y: 1.3, w: 4.0, h: 0.55, fill: { color: TEAL_DARK } });
  s.addText("BUSINESS CARD", { x: 0.55, y: 1.33, w: 3.9, h: 0.48,
    fontSize: 8, color: WHITE, bold: true, charSpacing: 2, valign: "middle"
  });
  s.addImage({ data: logoB64, x: 0.6, y: 1.95, w: 0.9, h: 0.9 });
  s.addText("Dr. Ranganagouda Balanagoudra", { x: 1.6, y: 1.98, w: 2.8, h: 0.3, fontSize: 9.5, color: TEAL, bold: true, fontFace: "Georgia" });
  s.addText("BDS, Dental Surgeon", { x: 1.6, y: 2.28, w: 2.8, h: 0.22, fontSize: 8, color: GREY_DARK, fontFace: "Calibri" });
  s.addText("📞 +91-XXXXXXXXXX  ·  📧 clinic@example.com", { x: 0.6, y: 3.0, w: 3.8, h: 0.22, fontSize: 7.5, color: GREY });
  s.addText("3.5\" × 2\"   ·   300 dpi   ·   Silk laminate finish", {
    x: 0.5, y: 3.48, w: 4.0, h: 0.22, fontSize: 7.5, color: GREY, align: "center", italic: true
  });

  // Letterhead mockup
  s.addShape(pres.ShapeType.rect, { x: 5.2, y: 1.3, w: 4.3, h: 2.3,
    fill: { color: WHITE }, line: { color: "C0D8D4", width: 1 }
  });
  s.addShape(pres.ShapeType.rect, { x: 5.2, y: 1.3, w: 4.3, h: 0.55, fill: { color: TEAL } });
  s.addText("LETTERHEAD / PRESCRIPTION PAD", { x: 5.25, y: 1.33, w: 4.2, h: 0.48,
    fontSize: 8, color: WHITE, bold: true, charSpacing: 2, valign: "middle"
  });
  s.addImage({ data: logoB64, x: 5.3, y: 1.95, w: 0.9, h: 0.9 });
  s.addText("Dr. Ranganagouda Balanagoudra", { x: 6.3, y: 1.98, w: 3.1, h: 0.3, fontSize: 9.5, color: TEAL, bold: true, fontFace: "Georgia" });
  s.addText("Dental Surgeon  ·  Reg. No. XXXXXXXXX", { x: 6.3, y: 2.28, w: 3.1, h: 0.22, fontSize: 7.5, color: GREY_DARK });
  s.addShape(pres.ShapeType.rect, { x: 5.3, y: 2.92, w: 4.1, h: 0.06, fill: { color: TEAL } });
  s.addText("A4  ·  Logo top-left  ·  Teal header band  ·  Gold footer rule", {
    x: 5.2, y: 3.48, w: 4.3, h: 0.22, fontSize: 7.5, color: GREY, align: "center", italic: true
  });

  // Signage guidance
  s.addText("SIGNAGE GUIDELINES", { x: 0.5, y: 3.82, w: 9, h: 0.28, fontSize: 9, color: TEAL, bold: true, charSpacing: 2 });
  const signs = [
    "Clinic fascia board: Logo centred, white on teal, minimum 30 cm wide",
    "Door decal: Full logo + name, minimum 15 cm wide, white background",
    "Reception wall: Logo embossed or printed at minimum 40 cm wide",
  ];
  signs.forEach((t, i) => {
    s.addShape(pres.ShapeType.rect, { x: 0.5, y: 4.15 + i * 0.37, w: 0.06, h: 0.28, fill: { color: TEAL } });
    s.addText(t, { x: 0.7, y: 4.15 + i * 0.37, w: 9.0, h: 0.28, fontSize: 9.5, color: GREY_DARK, fontFace: "Calibri" });
  });
}

// ════════════════════════════════════════════════════════════════════════════
// SLIDE 11  – Digital & Social Media
// ════════════════════════════════════════════════════════════════════════════
{
  const s = pres.addSlide();
  s.addShape(pres.ShapeType.rect, { x: 0, y: 0, w: 10, h: 5.625, fill: { color: WHITE } });

  s.addShape(pres.ShapeType.rect, { x: 0, y: 0, w: 10, h: 1.1, fill: { color: TEAL } });
  s.addText("09  ·  DIGITAL & SOCIAL MEDIA", {
    x: 0.5, y: 0.32, w: 9, h: 0.45, fontSize: 20, color: WHITE, bold: true, fontFace: "Georgia"
  });

  const platforms = [
    { name: "WhatsApp\nProfile",     spec: "180 × 180 px\nCircle crop", bg: "25D366", col: 0 },
    { name: "Facebook\nProfile",     spec: "170 × 170 px\nCircle crop", bg: "1877F2", col: 1 },
    { name: "Instagram\nProfile",    spec: "320 × 320 px\nCircle crop", bg: "E4405F", col: 2 },
    { name: "Google\nBusiness",      spec: "250 × 250 px\nSquare",       bg: "4285F4", col: 3 },
  ];

  platforms.forEach(({ name, spec, bg, col }) => {
    const x = 0.45 + col * 2.38;
    // Platform colour header
    s.addShape(pres.ShapeType.rect, { x, y: 1.3, w: 2.1, h: 0.38, fill: { color: bg } });
    s.addText(name, { x, y: 1.3, w: 2.1, h: 0.38, fontSize: 9, color: WHITE, bold: true, align: "center", valign: "middle" });
    // Circle mockup
    s.addShape(pres.ShapeType.ellipse, { x: x + 0.32, y: 1.75, w: 1.46, h: 1.46,
      fill: { color: OFF_WHITE }, line: { color: TEAL, width: 1 }
    });
    s.addImage({ data: logoB64, x: x + 0.35, y: 1.78, w: 1.4, h: 1.4 });
    // Spec
    s.addText(spec, { x, y: 3.28, w: 2.1, h: 0.45, fontSize: 8.5, color: GREY_DARK, align: "center", fontFace: "Calibri" });
  });

  // Email & Web banner spec
  rule(s, 0.5, 3.88, 9.0);
  s.addText("EMAIL SIGNATURE & WEBSITE BANNER", {
    x: 0.5, y: 3.94, w: 9, h: 0.26, fontSize: 8.5, color: TEAL, bold: true, charSpacing: 2
  });
  const webSpecs = [
    "Email signature: Logo 120 × 120 px PNG, left-aligned, followed by name and designation in Georgia 11 pt teal",
    "Website header: Logo SVG, 200 px height, white background, with 20 px padding on all sides",
    "Google Ads / banners: Logo on teal background, minimum 40 px height, paired with tagline in Calibri",
  ];
  webSpecs.forEach((t, i) => {
    s.addShape(pres.ShapeType.rect, { x: 0.5, y: 4.26 + i * 0.38, w: 0.06, h: 0.28, fill: { color: TEAL } });
    s.addText(t, { x: 0.7, y: 4.26 + i * 0.38, w: 9.0, h: 0.28, fontSize: 9.5, color: GREY_DARK, fontFace: "Calibri" });
  });
}

// ════════════════════════════════════════════════════════════════════════════
// SLIDE 12  – Contact & Brand Custodian
// ════════════════════════════════════════════════════════════════════════════
{
  const s = pres.addSlide();
  s.addShape(pres.ShapeType.rect, { x: 0, y: 0, w: 10, h: 5.625, fill: { color: TEAL_DARK } });

  // Decorative right teal block
  s.addShape(pres.ShapeType.rect, { x: 6.7, y: 0, w: 3.3, h: 5.625, fill: { color: TEAL } });
  s.addShape(pres.ShapeType.rect, { x: 0, y: 4.85, w: 6.7, h: 0.06, fill: { color: GOLD } });

  // Logo on right
  s.addImage({ data: logoB64, x: 7.1, y: 0.9, w: 2.5, h: 2.5 });
  s.addText("DR. RANGANAGOUDA\nBALANAGOUDRA", {
    x: 6.75, y: 3.55, w: 3.1, h: 0.75, fontSize: 9.5, color: WHITE, bold: true, align: "center", fontFace: "Georgia"
  });
  s.addText("DENTAL SURGEON", {
    x: 6.75, y: 4.3, w: 3.1, h: 0.28, fontSize: 8.5, color: GOLD, align: "center", charSpacing: 2
  });

  // Left heading
  s.addText("10  ·  CONTACT &\nBRAND CUSTODIAN", {
    x: 0.55, y: 0.7, w: 5.8, h: 1.0, fontSize: 26, color: WHITE, bold: true, fontFace: "Georgia", lineSpacingMultiple: 1.2
  });
  rule(s, 0.55, 1.78, 5.5);

  s.addText("For all brand asset requests, approval of new applications,\nor questions about these guidelines, contact:", {
    x: 0.55, y: 1.88, w: 5.7, h: 0.55, fontSize: 10, color: "AACCCA", fontFace: "Calibri"
  });

  const contacts = [
    ["CLINIC",   "Dr. Ranganagouda Balanagoudra Dental Clinic"],
    ["SURGEON",  "Dr. Ranganagouda Balanagoudra, BDS"],
    ["PHONE",    "+91 - XXXXXXXXXX"],
    ["EMAIL",    "clinic@drranganagouda.com"],
    ["WEBSITE",  "www.drranganagouda.com"],
  ];
  contacts.forEach(([label, val], i) => {
    const y = 2.52 + i * 0.43;
    s.addText(label + "  ", { x: 0.55, y, w: 1.2, h: 0.34, fontSize: 8, color: GOLD, bold: true, charSpacing: 1.5, align: "right" });
    s.addText(val, { x: 1.85, y, w: 4.6, h: 0.34, fontSize: 10, color: WHITE, fontFace: "Calibri" });
  });

  s.addText("Brand Standards Document  ·  Version 1.0  ·  2026", {
    x: 0.55, y: 5.25, w: 5.8, h: 0.22, fontSize: 7.5, color: "6699AA", align: "center"
  });
}

// ── Write file ────────────────────────────────────────────────────────────────
pres.writeFile({ fileName: "/home/daytona/workspace/dental-brand/Brand_Standards_Dr_Ranganagouda.pptx" })
  .then(() => console.log("Done"))
  .catch(e => { console.error(e); process.exit(1); });
Running Command

cd /home/daytona/workspace/dental-brand && node build.js 2>&1

Running Command

cd /home/daytona/workspace/dental-brand && curl -s "https://cdn.orris.care/image…

Editing File

~/dental-brand/build.js

Successfully replaced 1 instance(s) of the string in '/home/daytona/workspace/dental-brand/build.js'
Running Command

cd /home/daytona/workspace/dental-brand && node build.js 2>&1

Running Command

ls -lh /home/daytona/workspace/dental-brand/Brand_Standards_Dr_Ranganagouda.pptx

Your brand standards presentation is ready!

Brand Standards Dr Ranganagouda

Presentation · PPTX


The presentation is 12 slides built around your clinic's teal-green & slate-grey palette, with your logo embedded on every relevant slide. Here's what's inside:
SlideContent
1Cover - Dark teal cover with gold accent and logo
2Table of Contents - Numbered index of all sections
3Brand Overview - Clinic name, speciality, brand tone, tagline
4Logo Design & Anatomy - Each element labelled and explained
5Colour Palette - All 6 brand colours with hex codes & RGB values
6Typography - Georgia (primary serif) + Calibri (secondary sans), sizes and hierarchy
7Logo Do's - 6 correct usage rules with teal checkmarks
8Logo Don'ts - 6 misuse rules with red warning markers
9Clear Space & Minimum Size - Visual diagram + print/digital size specs
10Stationery & Signage - Business card, letterhead mockups + signage rules
11Digital & Social Media - WhatsApp, Facebook, Instagram, Google Business specs
12Contact & Brand Custodian - Closing slide with clinic contact details

I WANT TO MAKE DIGITAL POSTER FOR DENTAL RELATED DISEASE AWARENESS

Asking for Preferences
This is a shared conversation. Sign in to Orris to start your own chat.