|
| 1 | +<p class="demo-warn"> |
| 2 | + This page uses an experimental prototype version of a |
| 3 | + <span class="demo-surface-variable">material.theme</span> API. |
| 4 | + To enable it, click the <mat-icon>public</mat-icon> icon in the header. |
| 5 | +</p> |
| 6 | + |
| 7 | +<p> |
| 8 | + Angular Material components depend on CSS variables defined by the |
| 9 | + <span class="demo-surface-variable">material.theme</span> |
| 10 | + Sass mixin. This page provides guidance and documentation for using these variables to |
| 11 | + customize components. |
| 12 | +</p> |
| 13 | + |
| 14 | +<h1>Colors</h1> |
| 15 | + |
| 16 | +<p> |
| 17 | + Material Design uses color to create accessible, personal color schemes |
| 18 | + that communicate your product's hierarchy, state, and brand. See Material |
| 19 | + Design's <a href="https://m3.material.io/styles/color/system/overview">Color System</a> |
| 20 | + page to learn more about its use and purpose. |
| 21 | +</p> |
| 22 | +<p> |
| 23 | + The following colors are the most often used in Angular Material components. Use these |
| 24 | + colors and follow their uses to add theme colors to your application's custom components. |
| 25 | +</p> |
| 26 | +<p> |
| 27 | + Note that variables starting with "mat-app-on-*" are designed to be used for text or icons |
| 28 | + placed on top of its paired parent color. For example, <span class="demo-surface-variable">--mat-app-on-primary</span> |
| 29 | + is used for text and icons in elements filled with the <span class="demo-surface-variable">--mat-app-primary</span> color. |
| 30 | +</p> |
| 31 | + |
| 32 | +<div class="demo-group"> |
| 33 | + <div class="demo-color-container"> |
| 34 | + <div class="demo-heading" |
| 35 | + [style.background-color]="'var(--mat-app-primary)'" |
| 36 | + [style.color]="'var(--mat-app-on-primary)'"> |
| 37 | + <div class="demo-name"> Primary</div> |
| 38 | + <div class="demo-variable demo-code"> --mat-app-primary</div> |
| 39 | + </div> |
| 40 | + <div class="demo-description"> |
| 41 | + <p> |
| 42 | + The most common color used by Angular Material components to |
| 43 | + participate in the application theme. |
| 44 | + </p> |
| 45 | + <p> |
| 46 | + Examples include the background color |
| 47 | + of filled buttons, the icon color of selected radio buttons, and the |
| 48 | + outline color of form fields. |
| 49 | + </p> |
| 50 | + <p> |
| 51 | + Use the color <span class="demo-surface-variable">--mat-app-on-primary</span> for |
| 52 | + icons, text, and other visual elements placed on a primary background. This |
| 53 | + color is calculated to be optimal for accessibility and legibility. |
| 54 | + </p> |
| 55 | + </div> |
| 56 | + </div> |
| 57 | + |
| 58 | + <div class="demo-color-container"> |
| 59 | + <div class="demo-heading" |
| 60 | + [style.background-color]="'var(--mat-app-surface)'" |
| 61 | + [style.color]="'var(--mat-app-on-surface)'"> |
| 62 | + <div class="demo-name"> Surface</div> |
| 63 | + <div class="demo-variable code"> --mat-app-surface</div> |
| 64 | + </div> |
| 65 | + <div class="demo-description"> |
| 66 | + <p> |
| 67 | + A low-emphasis background color that provides a clear contrast for |
| 68 | + both light and dark themes and their varied theme colors. |
| 69 | + </p> |
| 70 | + <p> |
| 71 | + Examples include the background color of the application and most |
| 72 | + components such as the dialog, card, table, and more. |
| 73 | + </p> |
| 74 | + <p> |
| 75 | + Use the color <span class="demo-surface-variable">--mat-app-on-surface</span> for |
| 76 | + icons, text, and other visual elements placed on a surface background. This |
| 77 | + color is calculated to be optimal for accessibility and legibility. |
| 78 | + </p> |
| 79 | + </div> |
| 80 | + </div> |
| 81 | + |
| 82 | + <div class="demo-color-container"> |
| 83 | + <div class="demo-heading" |
| 84 | + [style.background-color]="'var(--mat-app-error)'" |
| 85 | + [style.color]="'var(--mat-app-on-error)'"> |
| 86 | + <div class="demo-name"> Error</div> |
| 87 | + <div class="demo-variable demo-code"> --mat-app-error</div> |
| 88 | + </div> |
| 89 | + <div class="demo-description"> |
| 90 | + <p> |
| 91 | + High-contrast color meant to alert the user to attract immediate attention. |
| 92 | + </p> |
| 93 | + <p> |
| 94 | + Examples include the background color of the badge and the text color of invalid |
| 95 | + form fields inputs. |
| 96 | + </p> |
| 97 | + <p> |
| 98 | + Use the color <span class="demo-surface-variable">--mat-app-on-error</span> for |
| 99 | + icons, text, and other visual elements placed on an error background. This |
| 100 | + color is calculated to be optimal for accessibility and legibility. |
| 101 | + </p> |
| 102 | + </div> |
| 103 | + </div> |
| 104 | + |
| 105 | + <div class="demo-color-container"> |
| 106 | + <div class="demo-heading" |
| 107 | + [style.background-color]="'var(--mat-app-outline)'" |
| 108 | + [style.color]="'var(--mat-app-surface)'"> |
| 109 | + <div class="demo-name"> Outline</div> |
| 110 | + <div class="demo-variable demo-code"> --mat-app-outline </div> |
| 111 | + </div> |
| 112 | + <div class="demo-description"> |
| 113 | + <p> |
| 114 | + Used for borders and dividers to help provide visual separation between |
| 115 | + and around elements. |
| 116 | + </p> |
| 117 | + <p> |
| 118 | + Examples include the color of the divider and border color of an outlined |
| 119 | + form field. |
| 120 | + </p> |
| 121 | + <p> |
| 122 | + Use the color <span class="demo-surface-variable">--mat-app-outline-variant</span> for a less |
| 123 | + prominent outline. |
| 124 | + </p> |
| 125 | + </div> |
| 126 | + </div> |
| 127 | +</div> |
| 128 | + |
| 129 | +<mat-expansion-panel> |
| 130 | + <mat-expansion-panel-header>Other available colors</mat-expansion-panel-header> |
| 131 | + |
| 132 | + <p> |
| 133 | + These colors are less commonly used in Angular Material components but |
| 134 | + are available for adding color variety and creating additional emphasis |
| 135 | + to components. |
| 136 | + </p> |
| 137 | + <p> |
| 138 | + Colors may be paired with a <span class="demo-surface-variable">--mat-app-on-</span> variable |
| 139 | + that should be used for text and icons placed within a filled container. |
| 140 | + </p> |
| 141 | + |
| 142 | + <h2>Alternative Theme Colors</h2> |
| 143 | + |
| 144 | + <theme-demo-colors [colors]="alternativeThemeColors"></theme-demo-colors> |
| 145 | + |
| 146 | + <h2>Surface Colors</h2> |
| 147 | + |
| 148 | + <p> |
| 149 | + The following colors should be used for backgrounds and large, |
| 150 | + low-emphasis areas of the screen. |
| 151 | + </p> |
| 152 | + |
| 153 | + <p> |
| 154 | + Containers filled with a surface color should apply the |
| 155 | + <span class="demo-surface-variable">--mat-app-on-surface</span> color to text |
| 156 | + and icons placed within. |
| 157 | + </p> |
| 158 | + |
| 159 | + <theme-demo-colors [colors]="surfaceColors"></theme-demo-colors> |
| 160 | + |
| 161 | + <h2>Fixed Colors</h2> |
| 162 | + |
| 163 | + <p> |
| 164 | + These colors are the same for both light and dark themes. They are unused |
| 165 | + by any Angular Material components. |
| 166 | + </p> |
| 167 | + |
| 168 | + <theme-demo-colors [colors]="fixedColors"></theme-demo-colors> |
| 169 | + |
| 170 | +</mat-expansion-panel> |
| 171 | + |
| 172 | +<h1>Typography</h1> |
| 173 | + |
| 174 | +<p> |
| 175 | + There are five categories of font types defined by Material Design: body, display, headline, |
| 176 | + label, and title. Each category has three sizes: small, medium, and large. |
| 177 | +</p> |
| 178 | +<p> |
| 179 | + Learn more about how these categories and their sizes should be used in your application by |
| 180 | + visiting Material Design's |
| 181 | + <a href="https://m3.material.io/styles/typography/overview">Typography</a> documentation. |
| 182 | +</p> |
| 183 | + |
| 184 | + |
| 185 | +@for (category of ['body', 'display', 'headline', 'label', 'title']; track $index) { |
| 186 | + <div class="demo-typography-group"> |
| 187 | + <div class="demo-typography-title">{{category}}</div> |
| 188 | + @for (size of ['small', 'medium', 'large']; track $index) { |
| 189 | + <div class="demo-typography-example"> |
| 190 | + <div class="demo-typography-variable"> |
| 191 | + <div class="demo-surface-variable">--mat-app-{{category}}-{{size}}</div> |
| 192 | + </div> |
| 193 | + <div class="demo-typography-text" [style.font]="'var(--mat-app-' + category + '-' + size + ')'">Lorem ipsum dolor</div> |
| 194 | + </div> |
| 195 | + } |
| 196 | + </div> |
| 197 | +} |
| 198 | + |
| 199 | +<p> |
| 200 | + Each variable can be applied to the `font` CSS style. Additionally, the parts of the variable definition |
| 201 | + can be accessed individually by appending the keywords "font", "line-height", "size", "tracking", and "weight". |
| 202 | +</p> |
| 203 | +<p> |
| 204 | + For example, the values for medium body text may be defined as follows: |
| 205 | +</p> |
| 206 | +<pre class="demo-code-block"> |
| 207 | +--mat-app-body-medium: 400 0.875rem / 1.25rem Roboto, sans-serif; |
| 208 | +--mat-app-body-medium-font: Roboto, sans-serif; |
| 209 | +--mat-app-body-medium-line-height: 1.25rem; |
| 210 | +--mat-app-body-medium-size: 0.875rem; |
| 211 | +--mat-app-body-medium-tracking: 0.016rem; |
| 212 | +--mat-app-body-medium-weight: 400; |
| 213 | +</pre> |
| 214 | + |
| 215 | +<h1>Elevation</h1> |
| 216 | + |
| 217 | +<p> |
| 218 | + Material Design provides six levels of elevation that can be used to provide |
| 219 | + a sense of depth and organization to an application's UI. Learn more at Material Design's |
| 220 | + <a href="https://m3.material.io/styles/elevation/overview">Elevation</a> guide. |
| 221 | +</p> |
| 222 | + |
| 223 | +<p> |
| 224 | + These levels are defined as CSS box-shadow values that can be styled to an element. |
| 225 | +</p> |
| 226 | + |
| 227 | +@for (level of [0, 1, 2, 3, 4, 5]; track $index) { |
| 228 | +<div class="demo-elevation code" [style.box-shadow]="'var(--mat-app-level' + level + ')'"> |
| 229 | +box-shadow: var(--mat-app-level{{level}}) |
| 230 | +</div> |
| 231 | +} |
0 commit comments