Skip to content

Commit

Permalink
Update tailwind.config.js
Browse files Browse the repository at this point in the history
  • Loading branch information
ElamathiiSelvan authored Oct 18, 2024
1 parent 86b5a18 commit b5dbd08
Showing 1 changed file with 19 additions and 18 deletions.
37 changes: 19 additions & 18 deletions frontend/tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,38 +4,39 @@ import { Testimonials } from './src/import-export/ImportExport';
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
"./src/**/*.{js,ts,jsx,tsx}", // Ensure paths point to your project files
],

theme: {
extend: {
keyframes: {
stickyNavbar: {
"0%": {
transform: "translateY(-40px)"
transform: "translateY(-40px)" // Navbar initially above the view
},
"100%": {
transform: "translateY(0)"
transform: "translateY(0)" // Navbar slides down into place
}
}
},
colors: {
dark_theme: "#113C49",
main_theme: "#03565A",
light_theme: "#B3DAD9",
pastel_blue: "#E3EFFC",
pastel_yellow: "#FDF1DB",
pastel_pink: "#FCEDF2",
cart_orange: "#FF8945",
text: "#ffffff",
text_grey: "#464646",
medicine_banner: "#162C2A",
testimonial_img_bg: "#579D93",
dark_theme: "#113C49", // Custom dark theme color
main_theme: "#03565A", // Primary color
light_theme: "#B3DAD9", // Light theme color
pastel_blue: "#E3EFFC", // Soft pastel blue
pastel_yellow: "#FDF1DB", // Soft pastel yellow
pastel_pink: "#FCEDF2", // Soft pastel pink
cart_orange: "#FF8945", // Vibrant orange (possibly for cart-related UI elements)
text: "#ffffff", // White text color
text_grey: "#464646", // Grey text color
medicine_banner: "#162C2A", // Dark banner for medicine section
testimonial_img_bg: "#579D93", // Background for testimonial images
},
height: {
heroHeight: "calc(100vh - 80px)" // Example calculation for dynamic height
},
// height:{
// heroHeihgt:"calc"
// }
},
},
plugins: [],
}
};

0 comments on commit b5dbd08

Please sign in to comment.