Skip to content

Commit 3e21e46

Browse files
EladBezalelandrewseguin
authored andcommittedFeb 23, 2017
fix(readability): changed text opacity from .54 to .87 according the spec (#91)
1 parent 9741759 commit 3e21e46

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed
 

‎material.angular.io/src/app/pages/component-viewer/_component-viewer-theme.scss

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@
88
$foreground: map-get($theme, foreground);
99

1010
app-component-viewer {
11-
color: mat-color($foreground, secondary-text);
11+
color: mat-color($foreground, text);
1212

1313
.mat-tab-label:focus {
14-
color: mat-color($foreground, secondary-text);
14+
color: mat-color($foreground, text);
1515
}
1616

1717
}

‎material.angular.io/src/styles/_typography-theme.scss

+5-5
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@
1111
.docs-guide-content {
1212
h1 {
1313
color: mat-color($primary, 800);
14-
background: rgba(mat-color($foreground, secondary-text), .03);
14+
background: rgba(mat-color($foreground, text), .03);
1515
}
1616

1717
h3, h2, h4, h5, p, ol, li{
18-
color: mat-color($foreground, secondary-text);
18+
color: mat-color($foreground, text);
1919
}
2020

2121
a {
@@ -27,16 +27,16 @@
2727
}
2828

2929
table tbody th{
30-
border: 1px solid rgba(mat-color($foreground, secondary-text), .03);
30+
border: 1px solid rgba(mat-color($foreground, text), .03);
3131
}
3232

3333
td {
34-
color: mat-color($foreground, secondary-text);
34+
color: mat-color($foreground, text);
3535
border: 1px solid rgba(mat-color($foreground, secondary-text), .03);
3636
}
3737

3838
th {
39-
color: mat-color($foreground, secondary-text);
39+
color: mat-color($foreground, text);
4040
background: rgba(mat-color($foreground, secondary-text), .03);
4141
}
4242
}

0 commit comments

Comments
 (0)
Please sign in to comment.