如何更改 ag 网格中选定行的颜色?

How to change the color of selected row in ag grid?

我需要在 ag-grid 中将选择颜色从蓝色(默认颜色)更改为红色边框的蓝色。

参考图片,蓝色应转换为带有红色边框的深蓝色

将以下内容添加到您的 css

.ag-theme-balham .ag-row-selected {
    background-color: #4abbff;
}

.ag-theme-balham .ag-ltr .ag-cell-focus {
    border: 1px solid red;
}