DursunCan Something like this ?

For this to work, you can use the below CSS
.UserDirectoryList .UserCard--directory .container {
width: auto !important;
padding: 20px !important;
background: #ffffff;
color: #666666;
}
.UserCard, .UserCard a {
color: #666;
}
However, if you decide to use fof/darkmode
then you’ll need to adjust the CSS so it looks like this
body when (@config-dark-mode =false) {
.UserDirectoryList .UserCard--directory .container {
width: auto !important;
padding: 20px !important;
background: #ffffff;
color: #666666;
}
.UserCard, .UserCard a {
color: #666;
}
}
body when (@config-dark-mode =true) {
.UserDirectoryList .UserCard--directory .container {
width: auto !important;
padding: 20px !important;
background: #666666;
color: #ffffff;
}
.UserCard, .UserCard a {
color: #fff;
}
}
The dark version would then look like this
