New to Kendo UI for VueStart a free 30-day trial

Appearance

Updated on Feb 5, 2026

The Chip provides a predefined set of appearance options.

Apart from the default vision of the Chip, these alternative styling options enable you to configure each individual aspect of the component's appearance.

The current article provides details about how the component changes when the different configurations of its properties are applied. Here are the sections you can directly access:

Configurator demo

With the following example, you can dynamically change the different appearance properties of the Chip and see how it changes.

Change Theme
Theme
Loading ...

Size

The size of the Chip is controlled through its size property. The values we can pass to the property are as follows:

  • small — Sets the padding to 3px.
  • medium — Sets the padding to 4px.
  • large — Sets the padding to 5px.

The following example demonstrates the usage of each size option:

Change Theme
Theme
Loading ...

Roundness

The roundness of the Chip is controlled through its rounded property. The values we can pass to the property are as follows:

  • none — Sets no border radius.
  • small — Sets the border radius to 1px.
  • medium — Sets the border radius to 2px.
  • large — Sets the border radius to 4px.
  • full — Sets the border radius to 9999px.

The following example demonstrates the usage of each rounded option:

Change Theme
Theme
Loading ...

Fill Mode

The styling of the Chip is controlled through its fillMode property. The values we can pass to the property are as follows:

  • solid — Sets a background color and solid borders.
  • outline — Sets a transparent background and solid borders.

The following example demonstrates the usage of each fillMode option:

Change Theme
Theme
Loading ...

Theme Colors

The color of the Chip is controlled through its themeColor property.

  • base — The color of the Chip will be based on the base theme color.
  • info — The color of the Chip will be based on the info theme color.
  • success — The color of the Chip will be based on the success theme color.
  • warning — The color of the Chip will be based on the warning theme color.
  • error — The color of the Chip will be based on the error theme color.

The following example demonstrates the usage of each themeColor option:

Change Theme
Theme
Loading ...