-
Notifications
You must be signed in to change notification settings - Fork 577
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(ONYX-1294): redesign badges and urgency signals on artwork card (#…
…11005) * feat: redesign Curators Pick and Increased Interest * feat: redesign partner offer * feat: redesign hight demand indicator, chore * chore: address review comments * chore: extract ArtworkSaleMessageComponent into a separate component * fix: tests * chore: refactoring * chore: address review comments * chore: address review comments * chore: rename ArtworkSaleMessage Component
- Loading branch information
Showing
14 changed files
with
234 additions
and
156 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1134,5 +1134,5 @@ | |
} | ||
] | ||
}, | ||
"generated_at": "2024-09-11T13:12:04Z" | ||
"generated_at": "2024-10-24T13:23:36Z" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
export const useMetaDataTextColor = ({ dark }: { dark: boolean }) => { | ||
const primaryTextColor = dark ? "white100" : "black100" | ||
|
||
const secondaryTextColor = dark ? "black15" : "black60" | ||
|
||
const backgroundColor = dark ? "black100" : "white100" | ||
|
||
return { primaryTextColor, secondaryTextColor, backgroundColor } | ||
} |
Oops, something went wrong.