Yes, you can use theme() directive
Your colors
colors: {
primary: {
500: '#0E70ED',
600: '#0552b3'
}
}
will be available in CSS files as
.prose a.custom-link {
color: theme('colors.primary.500');
}
More info here
Yes, you can use theme() directive
Your colors
colors: {
primary: {
500: '#0E70ED',
600: '#0552b3'
}
}
will be available in CSS files as
.prose a.custom-link {
color: theme('colors.primary.500');
}
More info here