You can use any color anywhere, all colors change with the theme. If you want to customize your colors, please read use-theme to learn more.
import { useTheme, Text } from '@bolio-ui/core'
const TextCustomComponent = () => {
const { palette } = useTheme()
return <Text style={{ color: palette.accents_1 }}>TextCustomComponent</Text>
}
Next
Customize Themes

