|
- // The file contents for the current environment will overwrite these during build.
- // The build system defaults to the dev environment which uses `environment.ts`, but if you do
- // `ng build --env=prod` then `environment.prod.ts` will be used instead.
- // The list of which env maps to which file can be found in `.angular-cli.json`.
-
- export const tools = {
- ROLE_ADMIN: 'ROLE_ADMIN',
- ROLE_SALES: 'ROLE_SALES',
- ROLE_TECHNIQUE: 'ROLE_TECHNIQUE',
- ROLE_PRODUCTION: 'ROLE_PRODUCTION',
- ROLE_ACCOUNTING: 'ROLE_ACCOUNTING',
- ROLE_SERVICE: 'ROLE_SERVICE',
-
- COLORS: [
- '#4397d4', // blue
- '#b56cdc', // purple
- '#dd6bbe', // pink
- '#45d4a7', // green
- '#fede62', // yellow
- '#fdb753', // orange
- '#808080', // grey
- '#363636' // black
- ],
- };
|