// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved. // See LICENSE.txt for license information. class Constants { static menuColors = [ {id: 'propColorDefault', name: 'Default', type: 'color'}, {id: 'propColorGray', name: 'Gray', type: 'color'}, {id: 'propColorBrown', name: 'Brown', type: 'color'}, {id: 'propColorOrange', name: 'Orange', type: 'color'}, {id: 'propColorYellow', name: 'Yellow', type: 'color'}, {id: 'propColorGreen', name: 'Green', type: 'color'}, {id: 'propColorBlue', name: 'Blue', type: 'color'}, {id: 'propColorPurple', name: 'Purple', type: 'color'}, {id: 'propColorPink', name: 'Pink', type: 'color'}, {id: 'propColorRed', name: 'Red', type: 'color'}, ] } export {Constants}