Skip to content

Commit 8985e72

Browse files
committed
Add new white background color
1 parent e8cd606 commit 8985e72

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

src/components/Features.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { Users, CircleHelp, BookOpen } from "lucide-react";
22

33
export default function Features() {
44
return (
5-
<section className="bg-secondary py-20">
5+
<section className="bg-background py-20">
66
<div className="outer">
77
<div className="inner">
88
<div className="flex-1 flex flex-col items-center text-center py-6">

src/components/Footer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { Code } from "lucide-react";
33

44
export default function Footer() {
55
return (
6-
<footer className="py-16 bg-secondary flex justify-around">
6+
<footer className="py-16 bg-background flex justify-around">
77
<div className="footer-container text-primary">
88
<h4 className="text-xl font-bold flex items-center gap-2">
99
<Code size={48} className="text-primary" />

src/components/Showcase.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ import { Smile } from "lucide-react";
22

33
export default function Showcase() {
44
return (
5-
<section className="flex flex-col items-center bg-secondary py-20">
6-
<h2 className="text-xl md:text-xl lg:text-4xl mb-6">
5+
<section className="flex flex-col items-center bg-background py-20">
6+
<h2 className="text-xl md:text-xl lg:text-4xl mb-6 text-primary">
77
Community Showcase
88
</h2>
99
<div className="flex flex-1">

tailwind.config.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ export default {
33
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
44
theme: {
55
colors: {
6+
background: "hsl(0,0%,70%)",
7+
// background: "hsl(0, 0%, 30%)",
68
primary: "#240e1f",
79
secondary: "#c08021",
810
accent: "#e96932",

0 commit comments

Comments
 (0)