mirror of
https://github.com/LBRYFoundation/lbry-android.git
synced 2025-08-30 00:31:26 +00:00
13 lines
254 B
JavaScript
13 lines
254 B
JavaScript
const Colors = {
|
|
Black: '#000000',
|
|
ChannelGrey: '#9b9b9b',
|
|
DescriptionGrey: '#999999',
|
|
LbryGreen: '#40b89a',
|
|
LightGrey: '#cccccc',
|
|
Orange: '#ffbb00',
|
|
Red: '#ff0000',
|
|
VeryLightGrey: '#f1f1f1',
|
|
White: '#ffffff'
|
|
};
|
|
|
|
export default Colors;
|