focalboard/webapp/src/constants.ts

21 lines
853 B
TypeScript
Raw Normal View History

2020-10-20 21:50:53 +02:00
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
2020-10-20 21:52:56 +02:00
import {MenuOption} from './menu'
2020-10-08 18:21:27 +02:00
class Constants {
2020-10-20 21:50:53 +02:00
static menuColors: MenuOption[] = [
2020-10-20 22:26:06 +02:00
{id: 'propColorDefault', name: 'Default', type: 'color'},
2020-10-20 21:50:53 +02:00
{id: 'propColorGray', name: 'Gray', type: 'color'},
{id: 'propColorBrown', name: 'Brown', type: 'color'},
2020-10-20 22:26:06 +02:00
{id: 'propColorOrange', name: 'Orange', type: 'color'},
2020-10-20 21:50:53 +02:00
{id: 'propColorYellow', name: 'Yellow', type: 'color'},
{id: 'propColorGreen', name: 'Green', type: 'color'},
{id: 'propColorBlue', name: 'Blue', type: 'color'},
{id: 'propColorPurple', name: 'Purple', type: 'color'},
2020-10-20 22:26:06 +02:00
{id: 'propColorPink', name: 'Pink', type: 'color'},
2020-10-20 21:50:53 +02:00
{id: 'propColorRed', name: 'Red', type: 'color'},
]
2020-10-08 18:21:27 +02:00
}
2020-10-20 21:50:53 +02:00
export {Constants}