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.
|
|
|
import { Currency } from '@prisma/client';
|
|
|
|
|
|
|
|
export const baseCurrency = Currency.CHF;
|
|
|
|
|
|
|
|
export const benchmarks = ['VOO'];
|
|
|
|
|
|
|
|
export const currencyPairs = [
|
|
|
|
`${Currency.USD}${Currency.EUR}`,
|
|
|
|
`${Currency.USD}${Currency.GBP}`,
|
|
|
|
`${Currency.USD}${Currency.CHF}`
|
|
|
|
];
|
|
|
|
|
|
|
|
export const ghostfolioScraperApiSymbolPrefix = '_GF_';
|
|
|
|
|
|
|
|
export const locale = 'de-CH';
|
|
|
|
|
|
|
|
export const primaryColorHex = '#36cfcc';
|
|
|
|
export const primaryColorRgb = {
|
|
|
|
r: 54,
|
|
|
|
g: 207,
|
|
|
|
b: 204
|
|
|
|
};
|
|
|
|
|
|
|
|
export const secondaryColorHex = '#3686cf';
|
|
|
|
export const secondaryColorRgb = {
|
|
|
|
r: 54,
|
|
|
|
g: 134,
|
|
|
|
b: 207
|
|
|
|
};
|
|
|
|
|
|
|
|
export const DEFAULT_DATE_FORMAT = 'dd.MM.yyyy';
|
|
|
|
export const DEFAULT_DATE_FORMAT_MONTH_YEAR = 'MMM yyyy';
|
|
|
|
|
|
|
|
export const UNKNOWN_KEY = 'UNKNOWN';
|