1import useColors from './useColors'; 2 3export default function usePrimaryColor() { 4 const colors = useColors(); 5 return colors.primary; 6} 7