forked from material-components/material-components-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththeme.html
207 lines (191 loc) · 9.5 KB
/
theme.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
<!DOCTYPE html>
<!--
Copyright 2016 Google Inc. All rights reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
https://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License
-->
<html>
<head>
<meta charset="utf-8">
<title>Theme - Material Components Catalog</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/png" href="/images/logo_components_color_2x_web_48dp.png">
<script src="/assets/theme.css.js"></script>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto+Mono">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<style>
.demo-theme__color {
display: inline-flex;
flex-direction: column;
margin-right: 24px;
}
.demo-theme__color__label {
display: inline-block;
box-sizing: border-box;
width: 130px;
margin-bottom: 1em;
}
.demo-theme__color__block {
display: inline-block;
box-sizing: border-box;
width: 150px;
height: 50px;
line-height: 50px;
text-align: center;
border: 1px solid #f0f0f0;
margin-bottom: 1px;
}
.demo-theme__text-styles {
display: inline-flex;
box-sizing: border-box;
padding: 16px;
border: 1px solid #f0f0f0;
align-items: center;
flex-direction: column;
}
@media(min-width: 768px) {
.demo-theme__text-styles {
flex-direction: row;
}
}
.demo-theme__text-styles > span {
padding: 0 16px;
}
.demo-theme--custom-light-bg {
background-color: #dddddd;
}
.demo-theme--custom-dark-bg {
background-color: #1d1d1d;
}
.example {
margin: 24px;
padding: 24px;
}
h2 {
margin-left: 48px;
margin-bottom: 0.8em;
margin-top: 0.8em;
}
h3 {
margin-bottom: 0.8em;
margin-top: 0.8em;
}
.hero button {
margin: 24px;
}
</style>
</head>
<body class="mdc-typography">
<header class="mdc-toolbar mdc-toolbar--fixed">
<div class="mdc-toolbar__row">
<section class="mdc-toolbar__section mdc-toolbar__section--align-start">
<span class="catalog-back">
<a href="/" class="mdc-toolbar__menu-icon"><i class="material-icons"></i></a>
</span>
<span class="mdc-toolbar__title catalog-title">Theme</span>
</section>
</div>
</header>
<main>
<div class="mdc-toolbar-fixed-adjust"></div>
<section class="hero">
<button class="mdc-button mdc-button--raised mdc-theme--primary-bg mdc-theme--text-primary-on-primary">Primary</button>
<button class="mdc-button mdc-button--raised button mdc-theme--secondary-bg mdc-theme--text-primary-on-secondary">Secondary</button>
</section>
<h2 class="mdc-typography--display1">Theme colors</h2>
<section class="example">
<h3 class="mdc-typography--title">Theme colors as text</h3>
<div class="demo-theme__color">
<div class="demo-theme__color__block mdc-theme--primary mdc-typography--body2">Primary</div>
<div class="demo-theme__color__block mdc-theme--primary-light mdc-typography--body2">Primary Light</div>
<div class="demo-theme__color__block mdc-theme--primary-dark mdc-typography--body2">Primary Dark</div>
</div>
<div class="demo-theme__color">
<div class="demo-theme__color__block mdc-theme--secondary mdc-typography--body2">Secondary</div>
<div class="demo-theme__color__block mdc-theme--secondary-light mdc-typography--body2">Secondary Light</div>
<div class="demo-theme__color__block mdc-theme--secondary-dark mdc-typography--body2">Secondary Dark</div>
</div>
</section>
<section class="example">
<h3 class="mdc-typography--title">Theme colors as background</h3>
<div class="demo-theme__color">
<div class="demo-theme__color__block mdc-theme--primary-bg mdc-theme--text-primary-on-primary">Primary</div>
<div class="demo-theme__color__block mdc-theme--primary-light-bg mdc-theme--text-primary-on-primary-light">Primary Light</div>
<div class="demo-theme__color__block mdc-theme--primary-dark-bg mdc-theme--text-primary-on-primary-dark">Primary Dark</div>
</div>
<div class="demo-theme__color">
<div class="demo-theme__color__block mdc-theme--secondary-bg mdc-theme--text-primary-on-secondary">Secondary</div>
<div class="demo-theme__color__block mdc-theme--secondary-light-bg mdc-theme--text-primary-on-secondary-light">Secondary Light</div>
<div class="demo-theme__color__block mdc-theme--secondary-dark-bg mdc-theme--text-primary-on-secondary-dark">Secondary Dark</div>
</div>
<div class="demo-theme__color">
<div class="demo-theme__color__block mdc-theme--background mdc-theme--text-primary-on-background">Background</div>
</div>
</section>
<section class="example">
<h3 class="mdc-typography--title">Light and dark tonal variants for extreme input luminance</h3>
<div class="demo-theme__color">
<div class="demo-theme__color__block demo-theme-bg--low-luminance mdc-theme--text-primary-on-dark">Low Luminance</div>
<div class="demo-theme__color__block demo-theme-bg--low-luminance-light mdc-theme--text-primary-on-dark">Light Variant</div>
<div class="demo-theme__color__block demo-theme-bg--low-luminance-dark mdc-theme--text-primary-on-dark">Dark Variant</div>
</div>
<div class="demo-theme__color">
<div class="demo-theme__color__block demo-theme-bg--high-luminance mdc-theme--text-primary-on-light">High Luminance</div>
<div class="demo-theme__color__block demo-theme-bg--high-luminance-light mdc-theme--text-primary-on-light">Light Variant</div>
<div class="demo-theme__color__block demo-theme-bg--high-luminance-dark mdc-theme--text-primary-on-light">Dark Variant</div>
</div>
</section>
<h2 class="mdc-typography--display1">Text colors for contrast</h2>
<section class="example">
<h3 class="mdc-typography--title">Text on background</h3>
<div class="demo-theme__text-styles mdc-theme--background mdc-typography--body2">
<span class="mdc-theme--text-primary-on-background">Primary</span>
<span class="mdc-theme--text-secondary-on-background">Secondary</span>
<span class="mdc-theme--text-hint-on-background">Hint</span>
<span class="mdc-theme--text-disabled-on-background">Disabled</span>
<span class="mdc-theme--text-icon-on-background material-icons">favorite</span>
</div>
<h3 class="mdc-typography--title">Text on primary</h3>
<div class="demo-theme__text-styles mdc-theme--primary-bg mdc-typography--body2">
<span class="mdc-theme--text-primary-on-primary">Primary</span>
<span class="mdc-theme--text-secondary-on-primary">Secondary</span>
<span class="mdc-theme--text-hint-on-primary">Hint</span>
<span class="mdc-theme--text-disabled-on-primary">Disabled</span>
<span class="mdc-theme--text-icon-on-primary material-icons">favorite</span>
</div>
<h3 class="mdc-typography--title">Text on secondary</h3>
<div class="demo-theme__text-styles mdc-theme--secondary-bg mdc-typography--body2">
<span class="mdc-theme--text-primary-on-secondary">Primary</span>
<span class="mdc-theme--text-secondary-on-secondary">Secondary</span>
<span class="mdc-theme--text-hint-on-secondary">Hint</span>
<span class="mdc-theme--text-disabled-on-secondary">Disabled</span>
<span class="mdc-theme--text-icon-on-secondary material-icons">favorite</span>
</div>
<h3 class="mdc-typography--title">Text on user-defined light background</h3>
<div class="demo-theme__text-styles demo-theme--custom-light-bg mdc-typography--body2">
<span class="mdc-theme--text-primary-on-light">Primary</span>
<span class="mdc-theme--text-secondary-on-light">Secondary</span>
<span class="mdc-theme--text-hint-on-light">Hint</span>
<span class="mdc-theme--text-disabled-on-light">Disabled</span>
<span class="mdc-theme--text-icon-on-light material-icons">favorite</span>
</div>
<h3 class="mdc-typography--title">Text on user-defined dark background</h3>
<div class="demo-theme__text-styles demo-theme--custom-dark-bg mdc-typography--body2">
<span class="mdc-theme--text-primary-on-dark">Primary</span>
<span class="mdc-theme--text-secondary-on-dark">Secondary</span>
<span class="mdc-theme--text-hint-on-dark">Hint</span>
<span class="mdc-theme--text-disabled-on-dark">Disabled</span>
<span class="mdc-theme--text-icon-on-dark material-icons">favorite</span>
</div>
</section>
</main>
</body>
</html>