打开ui-ngx/src/index.html

添加一个样式

image.png

菜单栏激活状态的颜色

  1. <style>
  2. /*菜单栏激活状态的颜色*/
  3. .tb-default li.ng-star-inserted .mat-button.tb-active {
  4. background-color: rgba(255, 165, 0, 1);
  5. }
  6. </style>

image.png

菜单栏鼠标悬停的颜色

  1. <style>
  2. /*菜单栏激活状态的颜色*/
  3. .tb-default li.ng-star-inserted .mat-button.tb-active {
  4. background-color: rgba(255, 165, 0, 1);
  5. }
  6. /*菜单栏鼠标悬停的颜色*/
  7. .tb-default li.ng-star-inserted .mat-button:hover {
  8. background-color: rgba(255, 165, 0, 0.5);
  9. }
  10. </style>

image.png

工具栏的颜色

  1. <style>
  2. /*菜单栏激活状态的颜色*/
  3. .tb-default li.ng-star-inserted .mat-button.tb-active {
  4. background-color: rgba(255, 165, 0, 1);
  5. }
  6. /*菜单栏鼠标悬停的颜色*/
  7. .tb-default li.ng-star-inserted .mat-button:hover {
  8. background-color: rgba(255, 165, 0, 0.5);
  9. }
  10. /*工具栏的颜色*/
  11. .tb-default .mat-toolbar.mat-primary{
  12. background-color: #0a675b !important;
  13. color: #f5f5f5 !important;
  14. }
  15. </style>

image.png

按钮颜色

  1. <style>
  2. /*菜单栏激活状态的颜色*/
  3. .tb-default li.ng-star-inserted .mat-button.tb-active {
  4. background-color: rgba(255, 165, 0, 1);
  5. }
  6. /*菜单栏鼠标悬停的颜色*/
  7. .tb-default li.ng-star-inserted .mat-button:hover {
  8. background-color: rgba(255, 165, 0, 0.5);
  9. }
  10. /*工具栏的颜色*/
  11. .tb-default .mat-toolbar.mat-primary{
  12. background-color: #0a675b !important;
  13. color: #f5f5f5 !important;
  14. }
  15. /*按钮颜色*/
  16. .tb-default .mat-raised-button.mat-primary{
  17. background-color: #0a675b !important;
  18. }
  19. </style>

image.png