aliro-orchestrator-branding
v1.4.0
Published
Client logos, styling and copy to apply to Aliro Orchestrator frontend builds.
Readme
Aliro Orchestrator Branding
This repository contains branding assets and packages for use in white-label aliro-orchestrator-frontend compilation for creating a client-specific frontend build.
This repository also contains style assets for the QNO Orchestrator (qno-frontend).
Required client branding assets directory structure
src/<client-name>/copy/brand-copy.jsonsrc/<client-name>/images/logo-header-left.pngsrc/<client-name>/images/logo-header-right.pngsrc/<client-name>/styles/brand-style.scsssrc/<client-name>/styles/css-vars.scsspackages/<client-name>-branding/package.json
To publish a branding package
- Change directory to
./packages/<desired package> - If update to package is a bugfix, do
npm version patch. Otherwise, runnpm version minor. - Publish contents via
npm publish(pass--dry-runto perform a test run, if desired). - Open PR to merge updated branding package
package.jsonfiles.
Color format
Because CSS color variables from this package may have alpha channels applied or otherwise be passed to CSS color functions, all colors must be in raw RGB format.
Example:
// correct
--branding-primary-color: 255 0 0;
// incorrect
--branding-primary-color: rgb(255, 0, 0);
--branding-primary-color: #FF0000;