Apply DAME's official brand guidelines to any document, presentation, or communication. Use when creating or formatting Word docs, PowerPoint slides, emails, or any other material that should follow DAME's visual identity — including colours, typography, logo usage, tone of voice, and naming conventions. Also use when asked about DAME's brand colours, fonts, or style.
Apply DAME's official brand identity consistently across all materials.
DAME — all capitals, no exceptions (it's an acronym: Digital Asset Mining Enterprise)See references/colours.md for full palette with HEX, RGB, and usage rules.
Quick reference:
| Role | Name | HEX |
|---|---|---|
| Primary | Dark Green | #608B2D |
| Primary | Light Green |
#7DB935 |
| Secondary | Dark Blue | #066BB0 |
| Secondary | Light Blue | #4C9BDC |
| Default | Black | #000000 |
| Background | Mid Grey | #BFBFBF |
| Alarm/Alert | Red | #D90D39 |
Colour intent:
1.3.3 Templates)All official templates are at SharePoint: 1.3.3 Templates
.dotx) — see dame-document-create skillfrom pptx.util import Pt
from pptx.dml.color import RGBColor
# DAME primary colours
DARK_GREEN = RGBColor(0x60, 0x8B, 0x2D)
LIGHT_GREEN = RGBColor(0x7D, 0xB9, 0x35)
DARK_BLUE = RGBColor(0x06, 0x6B, 0xB0)
LIGHT_BLUE = RGBColor(0x4C, 0x9B, 0xDC)
BLACK = RGBColor(0x00, 0x00, 0x00)
MID_GREY = RGBColor(0xBF, 0xBF, 0xBF)
ALARM_RED = RGBColor(0xD9, 0x0D, 0x39)
For full colour application workflow, see references/colours.md.