Vaadin 10 grid style like in Vaadin 8

Can anybody share the code, that turns Vaadin 10 grid style to Vaadin 8 one ?
Thank’s in adavance

Hello Vitalli,

I think theme modules are the solution to your problem, theme modules allow you to customize Vaadin component appearance.

The structure of the theme module for the grid would be something like this:

<dom-module id="my-grid-theme" theme-for="vaadin-grid">
    <template>
        <style>
            [part~="header-cell"]
 ::slotted(vaadin-grid-cell-content){
                font-weight:100 !important;
                font-size: 32pt !important;
                color:brown;
                background:yellow;
            }
        </style>
    </template>
</dom-module>

You can read more about theming at [Theme module documentation ]
(https://github.com/vaadin/vaadin-themable-mixin/wiki).