feat(theme): align UI with ownCloud corporate identity#1014
Merged
Conversation
768a0f4 to
08ba412
Compare
Member
Author
The docs UI was largely the stock Antora default theme with only light
ownCloud customization, so the site read as generic rather than branded.
- add the ownCloud logo plus the site title to the header (was a
plain-text title only); the title stays data-driven via {{site.title}}
and is hidden on small screens to avoid navbar overflow
- switch body typeface from Open Sans to Source Sans Pro (corporate font)
- define the corporate palette as --oc-* tokens in owncloud-vars.css and
apply it: navy navbar/footer/headings (#041e42), corporate-blue links
(#4e85c8), signature teal accent (#06e3bd); drop the stock Asciidoctor
brown-red block-title color (#7a2518) and Material-blue links (#1565c0)
- align NOTE/TIP admonitions to brand blue/teal
- add the logo to the footer
- replace stray hex literals in owncloud.css with the new tokens
Verified: npm run lint and npm run bundle pass; the bundle builds the real
docs-server site cleanly; compiled site.css resolves to brand values;
Source Sans Pro woff2 and oc-logo.svg ship in the bundle.
Closes #1017
Signed-off-by: Thomas Müller <1005065+DeepDiver1975@users.noreply.github.com>
08ba412 to
803dab4
Compare
dj4oC
approved these changes
Jun 14, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.


Why
A design review of
doc.owncloud.comagainst the corporate identity onowncloud.comshowed the docs UI was still largely the stock Antora default theme with only light ownCloud customization — no logo, the wrong body font, stock Asciidoctor colors, and missing brand accents. The site read as a generic third-party Antora site rather than part of the ownCloud brand.Full gap analysis and rationale: #1017.
What changed
#7a2518(Asciidoctor brown-red)#041e42#1565c0/#104d92(Material blue)#4e85c8/#364b68#1b223d/#0e152d#041e42/#052550#06e3bdaccent#191919All brand values are defined once as
--oc-*tokens insrc/css/owncloud-vars.css(imported after the stockvars.css, so overrides win). Stray hex literals inowncloud.csswere replaced with these tokens. The logo is the official white wordmark from owncloud.com. The header title stays data-driven via{{site.title}}, so the production build renders "Documentation for ownCloud (A Kiteworks Company)".Verification
npm run lint— stylelint + eslint passnpm run bundle—ui-bundle.zipbuilds with no errorsdocs-serversite against this bundle — header/footer logos, Source Sans Pro, navy headings, brand-blue links, and teal accents render across actual documentation pagessite.cssresolves.doc ato#4e85c8; all three Source Sans Pro weights load;oc-logo.svgand fonts ship in the bundleFollow-ups (not in this PR)
h2underlinesIMPORTANT/WARNINGadmonition colors against the orange/amber accents🤖 Generated with Claude Code