mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
375 B
12 lines
375 B
2 years ago
|
import { ProjectRole } from '~/lib/enums'
|
||
|
|
||
|
export const projectRoleTagColors = {
|
||
2 years ago
|
[ProjectRole.Owner]: '#cfdffe',
|
||
2 years ago
|
[ProjectRole.Creator]: '#d0f1fd',
|
||
2 years ago
|
[ProjectRole.Editor]: '#c2f5e8',
|
||
2 years ago
|
[ProjectRole.Commenter]: '#ffdaf6',
|
||
|
[ProjectRole.Viewer]: '#ffdce5',
|
||
2 years ago
|
}
|
||
2 years ago
|
|
||
|
export const projectRoles = [ProjectRole.Creator, ProjectRole.Editor, ProjectRole.Commenter, ProjectRole.Viewer]
|