aliro-orchestrator-branding
v1.4.0
Published
Client logos, styling and copy to apply to Aliro Orchestrator frontend builds.
Downloads
71
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.json
src/<client-name>/images/logo-header-left.png
src/<client-name>/images/logo-header-right.png
src/<client-name>/styles/brand-style.scss
src/<client-name>/styles/css-vars.scss
packages/<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-run
to perform a test run, if desired). - Open PR to merge updated branding package
package.json
files.
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;