Skip to content

Commit

Permalink
Merge pull request #2649 from kaloudis/loading-columns-light
Browse files Browse the repository at this point in the history
Loading Columns: make surrounding wordmarks visible on light themes
  • Loading branch information
kaloudis authored Dec 19, 2024
2 parents 92f24dd + dcfd862 commit 786d8ac
Showing 1 changed file with 54 additions and 0 deletions.
54 changes: 54 additions & 0 deletions components/LoadingColumns.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,63 @@ function LoadingColumns() {
source={loader}
autoPlay
colorFilters={[
// highlighted wordmark
{
keypath: 'Layer 14 Outlines',
color: themeColor('highlight')
},
// surrounding wordmarks
{
keypath: 'Layer 1 Outlines',
color: themeColor('text')
},
{
keypath: 'Layer 2 Outlines',
color: themeColor('text')
},
{
keypath: 'Layer 3 Outlines',
color: themeColor('text')
},
{
keypath: 'Layer 4 Outlines',
color: themeColor('text')
},
{
keypath: 'Layer 5 Outlines',
color: themeColor('text')
},
{
keypath: 'Layer 6 Outlines',
color: themeColor('text')
},
{
keypath: 'Layer 7 Outlines',
color: themeColor('text')
},
{
keypath: 'Layer 8 Outlines',
color: themeColor('text')
},
{
keypath: 'Layer 9 Outlines',
color: themeColor('text')
},
{
keypath: 'Layer 10 Outlines',
color: themeColor('text')
},
{
keypath: 'Layer 11 Outlines',
color: themeColor('text')
},
{
keypath: 'Layer 12 Outlines',
color: themeColor('text')
},
{
keypath: 'Layer 13 Outlines',
color: themeColor('text')
}
]}
resizeMode="contain"
Expand Down

0 comments on commit 786d8ac

Please sign in to comment.