如何更改按钮的字体颜色

时间:2019-05-18 00:29:43

标签: html angular angular-material

我有一个带有以下代码的按钮:

<button mat-button (click)="getStock()" >Go </button>

我在styles.css中为整个应用程序设置了背景色

html { background-color:#a9c5f2 };

与mat按钮对应的css组件代码

.mat-button {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    background-color: #659bf2;
    border-color: #659bf2;
    height:100px;
    width:300px;
    white-space: normal;
    color: black !important;
}

浏览器中的按钮上的文本为灰色。

我该如何解决?

1 个答案:

答案 0 :(得分:0)

有一个基于此的指令,它将带有一个颜色选项。

<button mat-button color="black" (click)="getStock()">Go</button>

还发现了这个stackblitz,其中显示了您可以使用mat-button进行操作的一些示例

Official Documentation