talking-drupal-tailwindcss/tailwind.config.js

25 lines
419 B
JavaScript
Raw Normal View History

2022-03-15 18:22:18 +00:00
module.exports = {
theme: {
colors: {
primary: '#2AAAE1',
gray: '#666666',
secondary: '#064871',
white: '#FFFFFF',
},
extend: {
fontFamily: {
sans: [
"proxima-nova",
"Proxima Nova",
"Open Sans",
"Gill Sans MT",
"Gill Sans",
'Corbel',
'Arial',
'sans-serif',
]
}
}
}
}