| 764 | } |
| 765 | |
| 766 | BitmapCol LTable_RowColor(int row, cc_bool selected, cc_bool featured) { |
| 767 | BitmapCol featSelColor = BitmapColor_RGB( 50, 53, 0); |
| 768 | BitmapCol featuredColor = BitmapColor_RGB(101, 107, 0); |
| 769 | BitmapCol selectedColor = BitmapColor_RGB( 40, 40, 40); |
| 770 | |
| 771 | if (featured) { |
| 772 | return selected ? featSelColor : featuredColor; |
| 773 | } else if (selected) { |
| 774 | return selectedColor; |
| 775 | } |
| 776 | |
| 777 | if (!Launcher_Theme.ClassicBackground) { |
| 778 | return BitmapColor_RGB(20, 20, 10); |
| 779 | } else { |
| 780 | return (row & 1) == 0 ? Launcher_Theme.BackgroundColor : 0; |
| 781 | } |
| 782 | } |
| 783 | #endif |
no outgoing calls
no test coverage detected