Failed to load the widgetset: ./VAADIN/widgetsets/com.company.web.toolkit.ui.AppWidgetSet/com.company.web.toolkit.ui.AppWidgetSet.nocache.js?1639179039593
Here is my code in helium-ext.css
@mixin com_inteacc_erp-helium-ext {
/* Basic */
--background-color: #FFFFFF;
--background-color_rgb: 255, 255, 255;
--primary-color: #245EAC;
--primary-color_rgb: 36, 94, 172;
/* Common */
--primary-color-shade-1: #205497;
--primary-color-shade-2: #1D4B87;
--primary-dim-color: #4E8BDA;
//Used in any DataGrid
//in the Helium theme, you need to increase the priority of your selectors. Wrap your styles in .v-grid:
//-----------------------------
.v-grid {
.v-grid-cell.background-yellow {
background-color: yellow;
color: black;
}
.v-grid-cell.background-red {
background-color: red;
color: white;
}
.v-grid-cell.background-red-black {
background-color: red;
color: black;
}
.v-grid-cell.background-green {
background-color: green;
color: white;
}
.v-grid-cell.background-blue {
background-color: blue;
color: white;
}
.v-grid-cell.background-orange {
background-color: orange;
color: white;
}
}
}