Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
--card-foreground: 210 40% 98%; /* gray-50 */
--popover: 222.2 84% 4.9%; /* slate-900 */
--popover-foreground: 210 40% 98%; /* gray-50 */
--primary: 222.2 84% 4.9%; /* slate-900 */
--primary: 0 0 100%; /* slate-900 */
--primary-foreground: 210 40% 98%; /* gray-50 */
--secondary: 0 0% 0%; /* black */
--secondary-foreground: 210 40% 98%; /* gray-50 */
Expand Down
4 changes: 2 additions & 2 deletions components/explore/Sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@ export default function Sidebar() {
</div>
<motion.button
variants={itemVariants}
className="w-full mt-3 text-xs bg-tag text-background hover:bg-tag/90 rounded-lg py-2.5 text-center font-medium"
className="w-full mt-3 text-xs bg-tag text-primary hover:bg-tag/90 rounded-lg py-2.5 text-center font-medium"
whileHover={{ scale: 1.02, y: -1 }}
whileTap={{ scale: 0.98 }}
transition={{ type: "spring", stiffness: 400, damping: 25 }}
Expand Down Expand Up @@ -441,7 +441,7 @@ export default function Sidebar() {
</div>
<motion.button
variants={itemVariants}
className="w-full mt-3 text-xs bg-tag text-background hover:bg-tag/90 rounded-lg py-1.5 text-center font-medium"
className="w-full mt-3 text-xs bg-tag text-primary hover:bg-tag/90 rounded-lg py-1.5 text-center font-medium"
whileHover={{ scale: 1.02, y: -1 }}
whileTap={{ scale: 0.98 }}
transition={{ type: "spring", stiffness: 400, damping: 25 }}
Expand Down
6 changes: 3 additions & 3 deletions components/explore/home/LiveStreams.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -223,13 +223,13 @@ export function LiveStreams({
{stream.title}
</h3>
<div className="flex flex-wrap gap-2 mt-1">
<span className="text-sm px-2 py-0.5 rounded bg-tag text-background">
<span className="text-sm px-2 py-0.5 rounded bg-tag text-white">
{stream.location}
</span>
{stream.tags.map((tag, index) => (
<span
key={index}
className="text-sm px-2 py-0.5 rounded bg-tag text-background"
className="text-sm px-2 py-0.5 rounded bg-tag text-white"
>
{tag}
</span>
Expand All @@ -252,7 +252,7 @@ export function LiveStreams({
<Button
onClick={handleToggle}
disabled={isTransitioning}
className={`flex items-center justify-center gap-2 w-full outline-none border-none focus:ring-0 transition-opacity bg-transparent hover:bg-surface-hover ${
className={`flex items-center justify-center text-white gap-2 w-full outline-none border-none focus:ring-0 transition-opacity bg-tag hover:bg-surface-hover ${
isTransitioning
? "opacity-70 cursor-not-allowed"
: "opacity-100"
Expand Down
6 changes: 3 additions & 3 deletions components/explore/home/TrendingStreams.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -217,13 +217,13 @@ export function TrendingStreams({ title, streams }: TrendingStreamsProps) {
{stream.title}
</h3>
<div className="flex flex-wrap gap-2 mt-1">
<span className="text-xs px-2 py-0.5 rounded bg-tag text-background">
<span className="text-xs px-2 py-0.5 rounded bg-tag text-primary">
{stream.location}
</span>
{stream.tags.map((tag, index) => (
<span
key={index}
className="text-xs px-2 py-0.5 rounded bg-tag text-background"
className="text-xs px-2 py-0.5 rounded bg-tag text-primary"
>
{tag}
</span>
Expand All @@ -246,7 +246,7 @@ export function TrendingStreams({ title, streams }: TrendingStreamsProps) {
<Button
onClick={handleToggle}
disabled={isTransitioning}
className={`flex items-center justify-center gap-2 w-full outline-none border-none focus:ring-0 transition-opacity bg-transparent hover:bg-surface-hover ${
className={`flex items-center justify-center gap-2 w-full text-white outline-none border-none focus:ring-0 transition-opacity bg-tag hover:bg-surface-hover ${
isTransitioning
? "opacity-70 cursor-not-allowed"
: "opacity-100"
Expand Down
Loading