-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
25 lines (24 loc) · 1.21 KB
/
tailwind.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/** @type {import('tailwindcss').Config} */
export default {
content: ['index.html', './src/components/Header.jsx', './src/components/Hero.jsx', './src/components/TopPicks.jsx', './src/components/TopPicksData.jsx', './src/components/ThrillSection.jsx', './src/components/ThrillData.jsx','./src/components/ShopNow.jsx', './src/components/shopNowProducts.jsx', './src/components/Footer.jsx', './src/components/CartHeader.jsx', './src/components/CartItems.jsx', './src/components/CheckOutHeader.jsx', './src/components/CheckOutProducts.jsx', './src/components/CheckOutForm.jsx', './src/CheckOut.jsx', './src/components/emptyCart.jsx', './src/components/ProductHero.jsx', './src/components/relatedProducts.jsx', './src/SuccessfulCheckout.jsx'],
theme: {
extend: {
colors: {
'dullYellow': '#F7E7CE',
'heroPink': '#F1387C',
'white': '#FFFFFF',
'dullPink': '#EB3077',
'neutralPink': '#EF4685',
'text-pink': '#EF327C',
'naturalPink': '#EF337C',
'livelyPink': '#EB4283',
'bleetYellow': '#FFDD25',
'glassyBlack': '#181B1F',
'tradyPink': '#EA377C',
'offWhite': '#898989',
'offBlack': '#333333',
}
},
},
plugins: [],
}