Skip to content

Commit

Permalink
cp
Browse files Browse the repository at this point in the history
  • Loading branch information
slavingia committed Dec 30, 2024
1 parent 3ddb0cd commit 9138998
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 9 deletions.
14 changes: 11 additions & 3 deletions app/2025/slides/2.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -94,10 +94,18 @@ export default function Slide2() {
<ChartTooltip
formatter={(value) => `$${value.toLocaleString()}`}
contentStyle={{
backgroundColor: "var(--background)",
border: "1px solid var(--border)",
backgroundColor: "#1f2937",
border: "1px solid #374151",
borderRadius: "6px",
color: "var(--foreground)",
color: "#f3f4f6",
boxShadow: "0 2px 4px rgba(0,0,0,0.2)",
padding: "8px 12px"
}}
itemStyle={{
color: "#f3f4f6"
}}
labelStyle={{
color: "#f3f4f6"
}}
/>
<Bar
Expand Down
15 changes: 12 additions & 3 deletions app/2025/slides/3.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -88,11 +88,20 @@ export default function Slide3() {
stroke="currentColor"
/>
<ChartTooltip
formatter={(value) => `$${value.toLocaleString()}`}
contentStyle={{
backgroundColor: "var(--background)",
border: "1px solid var(--border)",
backgroundColor: "#1f2937",
border: "1px solid #374151",
borderRadius: "6px",
color: "var(--foreground)",
color: "#f3f4f6",
boxShadow: "0 2px 4px rgba(0,0,0,0.2)",
padding: "8px 12px"
}}
itemStyle={{
color: "#f3f4f6"
}}
labelStyle={{
color: "#f3f4f6"
}}
/>
<ChartLegend />
Expand Down
14 changes: 11 additions & 3 deletions app/2025/slides/4.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -86,10 +86,18 @@ export default function Slide4() {
<ChartTooltip
formatter={(value) => `$${value.toLocaleString()}`}
contentStyle={{
backgroundColor: "var(--background)",
border: "1px solid var(--border)",
backgroundColor: "#1f2937",
border: "1px solid #374151",
borderRadius: "6px",
color: "var(--foreground)",
color: "#f3f4f6",
boxShadow: "0 2px 4px rgba(0,0,0,0.2)",
padding: "8px 12px"
}}
itemStyle={{
color: "#f3f4f6"
}}
labelStyle={{
color: "#f3f4f6"
}}
/>
<ChartLegend />
Expand Down

0 comments on commit 9138998

Please sign in to comment.