Skip to content

Logo

The Zurich logo is the visual foundation of the entire Zurich brand. With refreshed colors, our logo stands in tradition with added warmth and optimism. We use our logo proudly to mark all our words and actions.

UX/UI Guidelines

Check the design documentation of the component in ZeroHeight.

Implementations

The component Logo is available in the following technologies:

CSS Components
cssreactvue
Web Components
webreactvueangular
Native
react_native

Parameters

Parameters

Parameters are the attributes that can be used to customize the component when using it in a project. They apply to the WebComponents implementation and wrappers and to the Vue and React CSS implementations. Some parameters names change between the implementations, in order to follow the conventions of each technology and framework.

For example, the param model is named ngModel in Angular, modelValue in Vue, but stays as model in React.

By default, all the parameters are optional or can be set in different, except for the ones marked as required

The parametrization of the component can be done with the following custom params or properties:

NameTypeSlotDescription
configstring Defines the direction of the logo, changing to horizontal if the value is set as `inline`.
customobject

A record of key-value pairs to set the CSS custom tokens. It's a complex attribute set as an JS object in stringified JSON format.

Example:

html
<z-logo custom='{"fill":"#06e7a3"}' />

Check the available values in the customization section.

custom-strstring

The stringified version of the custom property. It follows the pattern key:value;key:value;, with the possibility of setting multiple values and spaces between the punctuation characters.

Example:

html
<z-logo custom-str="fill:#06e7a3" />
z-themestring

Sets the theme of the component. The possible values are light and dark.

html
<z-logo z-theme="dark" />

From Figma to code

You can check the Figma implementation here. This are the available properties:

  • Type select
  • Style select

Customization

INFO

Check everything about the customization mechanics in the "How it works" documentation.

CSS VariableTypeDescription
--z-logo--fillcolorFill color
--z-logo--sizedistanceSize of logo

The fill and size of the logo can be customized using the --z-logo--fill and --z-logo--size CSS custom properties respectively or the custom attribute.

Extending logos or modifying sources

We can use the --z-logo--url and --z-logo--url-inline CSS variables to change the source of the icon. This way, we can use any SVG file as an icon. The rest of the component will behave the same.

The custom-str won't work with this prop, so we need to use the CSS or using style or custom for instances.

SVGs for icons must be flattened

The SVG file must be flattened to work correctly. This means that the SVG file should not have any nested SVG elements or multiple SVG sub-elements.

It's better and more comfortable to do this override anyway in a CSS general file:

css
[z-logo] {
  --z-logo--url: url(https://upload.wikimedia.org/wikipedia/commons/3/3b/Eo_circle_green_checkmark.svg);
}

We can also use this approach to extend the icon catalog with custom icons.

css
[z-logo][data-brand="react"] {
  --z-logo--url: url(https://upload.wikimedia.org/wikipedia/commons/a/a7/React-icon.svg);
}