Learning-HTMX/13-testimonials-grid-section/tailwind.config.js

25 lines
645 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{html,scala}"],
theme: {
extend: {
colors: {
'moderate-violet': 'hsl(263, 55%, 52%)',
'very-dark-grayish-blue': 'hsl(217, 19%, 35%)',
'very-dark-blackish-blue': 'hsl(219, 29%, 14%)',
'light-gray': 'hsl(0, 0%, 81%)',
'light-grayish-blue': 'hsl(210, 46%, 95%)',
},
fontFamily: {
'sans': ['Barlow Semi Condensed', 'sans-serif'], // This will set Roboto as the default sans font
},
fontWeight: {
'normal': 400,
'bold': 500,
}
},
},
plugins: [],
}