Show custom post category for single post

<?php $terms = get_the_terms( $post->ID , 'swatches-category' ); foreach ( $terms as $term ) {  echo $term->name; } ?>

That solved it! 🙂