diff --git a/13-testimonials-grid-section/src/input.css b/13-testimonials-grid-section/src/input.css index b5c61c9..c06af22 100644 --- a/13-testimonials-grid-section/src/input.css +++ b/13-testimonials-grid-section/src/input.css @@ -1,3 +1,7 @@ @tailwind base; @tailwind components; @tailwind utilities; + +html { + font-size: 13px; +} diff --git a/13-testimonials-grid-section/tailwind.config.js b/13-testimonials-grid-section/tailwind.config.js index 089db9a..ff247f5 100644 --- a/13-testimonials-grid-section/tailwind.config.js +++ b/13-testimonials-grid-section/tailwind.config.js @@ -1,8 +1,23 @@ /** @type {import('tailwindcss').Config} */ module.exports = { - content: ["./src/**/*.html"], + content: ["./src/**/*.{html, scala}"], theme: { - extend: {}, + 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: [], }