404647c4cb
* add storage stats card to My LBRY downloads page * add decimalPoints parameter to formatBytes method * some more tweaks to notifications and startup * cancel all notifications if the service is not running when the activity is destroyed
20 lines
411 B
JavaScript
20 lines
411 B
JavaScript
const Colors = {
|
|
Black: '#000000',
|
|
ChannelGrey: '#9b9b9b',
|
|
DarkGrey: '#555555',
|
|
DescriptionGrey: '#999999',
|
|
LbryGreen: '#40b89a',
|
|
BrighterLbryGreen: '#40b887',
|
|
LightGrey: '#cccccc',
|
|
LighterGrey: '#e5e5e5',
|
|
Orange: '#ffbb00',
|
|
Red: '#ff0000',
|
|
VeryLightGrey: '#f1f1f1',
|
|
White: '#ffffff',
|
|
|
|
StatsAudio: '#f6a637',
|
|
StatsImage: '#ff4a7d',
|
|
StatsOther: '#26bcf7'
|
|
};
|
|
|
|
export default Colors;
|