Skip to content

Commit 7b5dbc1

Browse files
committed
feat: fix color correction
1 parent 54a44cb commit 7b5dbc1

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,10 @@
1818

1919
## 📑 Categories
2020

21-
- [Command Line Tools](#command-line-tools) - Tools that run from your terminal
22-
- [Android Studio Tools](#android-studio) - Built-in features to enhance your IDE experience
23-
- [Jetpack Compose Tools](#jetpack-compose) - Tools specific to modern UI development
21+
22+
- [Command Line Tools](https://github.yogeshpaliyal.com/awesome-android-tooling/?tag=command-line) - Tools that run from your terminal
23+
- [Android Studio Tools](https://github.yogeshpaliyal.com/awesome-android-tooling/?tag=android-studio) - Built-in features to enhance your IDE experience
24+
- [Jetpack Compose Tools](https://github.yogeshpaliyal.com/awesome-android-tooling/?tag=jetpack-compose) - Tools specific to modern UI development
2425

2526
## ✨ Highlights
2627

src/App.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@ function App() {
278278
<span className="text-sm text-muted-foreground">Selected:</span>
279279
<button
280280
onClick={() => handleTagSelect(selectedTag)}
281-
className="px-3 py-1 rounded-full text-xs bg-primary text-primary-foreground flex items-center gap-1"
281+
className="px-3 py-1 rounded-full text-xs border-2 border-primary text-primary flex items-center gap-1"
282282
>
283283
{selectedTag}
284284
<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round">
@@ -344,7 +344,7 @@ function App() {
344344
key={tag}
345345
className={`px-2 py-1 rounded text-xs cursor-pointer ${
346346
selectedTag === tag
347-
? 'bg-primary/20 text-primary font-medium'
347+
? 'border-2 border-primary text-primary font-medium'
348348
: 'bg-muted text-muted-foreground hover:bg-muted/80'
349349
}`}
350350
onClick={() => handleTagSelect(tag)}

src/components/ui/pagination.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ export function Pagination({
8989
className={cn(
9090
"inline-flex items-center justify-center h-8 min-w-8 px-3 rounded-md text-sm",
9191
currentPage === page
92-
? "bg-primary text-primary-foreground"
92+
? "border-2 border-primary text-primary font-medium"
9393
: "border border-input bg-background hover:bg-accent hover:text-accent-foreground"
9494
)}
9595
aria-current={currentPage === page ? "page" : undefined}

0 commit comments

Comments
 (0)