diff options
Diffstat (limited to 'src/alf/util/colorGeneration.ts')
-rw-r--r-- | src/alf/util/colorGeneration.ts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/alf/util/colorGeneration.ts b/src/alf/util/colorGeneration.ts index 929a01d3a..8d769b51b 100644 --- a/src/alf/util/colorGeneration.ts +++ b/src/alf/util/colorGeneration.ts @@ -15,3 +15,7 @@ export function generateScale(start: number, end: number) { return start + range * stop }) } + +export const defaultScale = generateScale(6, 100) +// dim shifted 6% lighter +export const dimScale = generateScale(12, 100) |