.wp-block-table table thead, .wp-block-table table tfoot {
    border-color: var(--wp--preset--color--orange);
}
.wp-block-table table td, .wp-block-table table th {
    padding: var(--wp--preset--spacing--15);
    border-color: var(--wp--preset--color--gray-30);
}
.wp-block-table table td:first-child, .wp-block-table table th:first-child {
    border-left: 0;
}
.wp-block-table table td:last-child, .wp-block-table table th:last-child {
    border-right: 0;
}

.wp-block-table.is-style-stripes {
    border-color: var(--wp--preset--color--gray-40);
}
.wp-block-table.is-style-stripes tbody tr:nth-child(odd){
    background-color: var(--wp--preset--color--gray-40);
}