Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

List of styles in Material Design Colors and Themes

I try to create my first c#/wpf/xalm project using Material Design Colors and Themes. I have some tutorial where are defined some styles e.g. for checkboxes are:

Style="{StaticResource MaterialDesignActionDarkCheckBox}
Style="{StaticResource MaterialDesignActionLightCheckBox}
for Buttons Style="{StaticResource MaterialDesignFlatButton}"

etc.

My question is: where I can find list of all available styles in Material Design?

like image 342
Rafal010101 Avatar asked Apr 02 '18 18:04

Rafal010101


People also ask

What are the different styles of colors?

The seven major color schemes are monochromatic, analogous, complementary, split complementary, triadic, square, and rectange (or tetradic).

What is Material Design theme?

Material Theme Builder allows you to export the theming code to multiple formats: Android Views (XML), Jetpack Compose (Kotlin) and Design System Package (DSP). Note that the surface colors (Surface 1 - 5) are shown within Material Theme Builder to help visualize surface tonal colors based on elevation.

What is primary color in Material Design?

In Material Design, a primary color refers to a color that appears most frequently in your app. A secondary color refers to a color used to accent key parts of your UI. Using colors from the Material Design palette is optional.


Video Answer


1 Answers

Assuming you mean this: http://materialdesigninxaml.net/

You can pull the source and take a look at it: https://github.com/ButchersBoy/MaterialDesignInXamlToolkit

You can just take a look round on the site for a fair bit of what I should think you want.

https://github.com/ButchersBoy/MaterialDesignInXamlToolkit/tree/master/MaterialDesignColors.Wpf/Themes

like image 151
Andy Avatar answered Nov 14 '22 21:11

Andy