Apply bundled Office themes or load themes from .thmx files.
1. What Are Themes
Themes are color and font scheme definitions that control the visual appearance of documents. A theme contains:
-
Color scheme — 12 theme colors (2 dark, 2 light, 6 accents, 2 hyperlinks)
-
Font scheme — Major fonts for headings, minor fonts for body text
-
Effect scheme — 3D effects, shadows, reflections
2. Using Bundled Themes
Uniword includes 29 Office themes as bundled YAML files for fast loading:
# Load bundled theme by name
theme = Uniword::Theme.load('celestial')
# Apply to document
doc = Uniword::Document.new
doc.theme = theme
# Or use shorthand method
doc.apply_theme('celestial')
# List available bundled themes
available = Uniword::Theme.available_themes
# => ["atlas", "badge", "berlin", "celestial", ...]
|
Themes use Uniword names (e.g., |
3. Loading Themes from .thmx Files
Load a theme directly from a Microsoft Office .thmx file:
# Load theme from .thmx file
theme = Uniword::Theme.from_thmx('path/to/Celestial.thmx')
puts theme.name
# => "Celestial"
# Apply to document
doc = Uniword::Document.new
doc.theme = theme
doc.save('output.docx')
4. Combining Themes and StyleSets
Themes define colors and fonts. StyleSets define style formatting. Use them together for professional documents:
doc = Uniword::Document.new
# Apply theme (colors and fonts)
doc.apply_theme('celestial')
# Apply StyleSet (style definitions)
doc.apply_styleset('distinctive')
# Content uses theme colors and StyleSet formatting
doc.add_paragraph('Title', heading: :heading_1)
doc.add_paragraph('Body text in theme colors.')
doc.save('professional_document.docx')
5. Available Themes
Uniword bundles the following themes:
| Uniword Name | Description |
|---|---|
|
Modern, professional blue-gray palette |
|
Bold, attention-grabbing design |
|
Cool, contemporary color scheme |
|
Cosmic, purple-blue gradients |
|
Nature-inspired green tones |
|
Rich, layered colors |
|
Fresh, water-inspired blues |
|
Geometric, modern design |
|
Soft, elegant colors |
|
Artistic, creative palette |
|
Bold, newspaper-style |
|
Integrated, balanced colors |
|
Electric, energetic design |
|
Professional Ion variant |
|
Classic, refined styling |
|
Celebratory, vibrant |
|
Interconnected, network design |
|
Classic Office styling |
|
Default Office theme |
|
Natural, earthy tones |
|
Layered, depth effect |
|
Packaged, contained design |
|
Nostalgic, vintage colors |
|
Clean, soap-inspired palette |
|
Sharp, geometric cuts |
|
Ethereal, flowing design |
|
Perspective, architectural |
|
Delicate, light colors |
|
Woodgrain, natural textures |