mirror of
https://github.com/LBRYFoundation/lbry-android.git
synced 2025-08-31 01:01:26 +00:00
25 lines
520 B
JavaScript
25 lines
520 B
JavaScript
const Colors = {
|
|
PageBackground: '#efeff4',
|
|
|
|
Black: '#000000',
|
|
ChannelGrey: '#9b9b9b',
|
|
DarkGrey: '#555555',
|
|
DescriptionGrey: '#999999',
|
|
LbryGreen: '#2f9176',
|
|
BrighterLbryGreen: '#40b887',
|
|
NextLbryGreen: '#38d9a9',
|
|
LightGrey: '#cccccc',
|
|
LighterGrey: '#e5e5e5',
|
|
Orange: '#ffbb00',
|
|
Red: '#ff0000',
|
|
BrightRed: '#e35454',
|
|
VeryLightGrey: '#f1f1f1',
|
|
White: '#ffffff',
|
|
UriDescBlue: '#3971db',
|
|
|
|
StatsAudio: '#f6a637',
|
|
StatsImage: '#ff4a7d',
|
|
StatsOther: '#26bcf7',
|
|
};
|
|
|
|
export default Colors;
|