You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
blockly-app/src/constants.ts

13 lines
341 B
TypeScript

import { LogLevel, LogOptions } from "./providers/logging/logging";
export const APP_VERSION = '1.1.0'
export const COLORS = {
PRIMARY: '#4EAF47', // sensebox green
}
export const DEFAULT_LANG = 'en'
export const LOG_OPTIONS: LogOptions = {
local: LogLevel.INFO,
remote: LogLevel.WARN,
endpoint: 'https://logs.snsbx.nroo.de/log',
}