Is this a bbTable you've created in the WYSIWYG editor?
If correct, and you're looking to change the table border colors site-wide, then put these in your extra.less
//Styling for table heading row
.bbTable>table>thead>tr>th, .bbTable>table>tbody>tr>th {
border: 2px solid pink;
}
//Styling for table description row
.bbTable>table>thead>tr>td, .bbTable>table>tbody>tr>td {
border: 4px dashed blue;
}
Output in my example:
If you need it for an individual table and not site-wide, I got no clue. Hope this helps.