Using Valo-Theme from your Demo-side

I am using Vaadin 8.

You have a Demowebsite with different Themes.
https://demo.vaadin.com/valo-theme/

From where can i get the scss-files of this themes?
I want to use it in my application.

Is it possible to get the sourcecode of this Part of the Website?

That demo site demonstrates the built-in styles of Valo theme, so you should not need scss-files. Just use Valo theme, and use the predefined stylenames ( https://vaadin.com/download/release/8.4/8.4.3/docs/api/com/vaadin/ui/themes/ValoTheme.html ). E.g. comboBox.addStyleName(ValoTheme.COMBOBOX_LARGE) or button.addStyleName(ValoTheme.BUTTON_PRIMARY)

A lot of Thanks.