This is a solution to the Testimonials grid section challenge on Frontend Mentor. Frontend Mentor challenges help you improve your coding skills by building realistic projects.
Users should be able to:
This was my first time using Tailwind CSS and I really enjoyed it. The only other framework I have experience with so far is Bootstrap, and I found Tailwind CSS a lot easier to use and customise.
I added custom colors as they are in the design, custom font and background image.
theme: {
extend: {
colors: {
violet: {
DEFAULT: '#733FC8',
light: '#A775F1'
},
grey: {
dark: '#19202D',
medium: '#48556A',
light: '#ECF2F8'
}
},
fontFamily: {
'barlow': '"Barlow Semi Condensed", sans-serif',
},
backgroundImage: theme => ({
'background-quote': "url('/images/bg-pattern-quotation.svg')",
}),
backgroundPosition: {
'background-quote': 'top 0% left 80%',
}
},
},
I definitely want to use Tailwind CSS with a more complex design to learn more about it.
I found Tailwind CSS documentation very helpful, especially when it came to customisation. If you're struggling with setup of configuration, I also watched parts of a tutorial by The Net Ninja on youtube and found it very helpful.