react-native-tailwindcss was made as flexible as possible so styling components from someone else is possible in a way that is familiar.
color values
As the color values are sometimes needed as a string there is a simple way to get the colors specified in your config file.
Use the color or colors object to get the color values. (e.g.: color.red500 gives '#f56565')
access to styles
When there is access to the styles prop it is as usual.
access to styles by name
When you can access the styles by specified names, you can use the ... operator (spread syntax) to add styles in a familiar way.
It’s a bit like the @apply of tailwind CSS.