changed default redaction and preview color

This commit is contained in:
Timo 2021-02-18 18:48:30 +02:00
parent a08c331f80
commit 77efc6ced7
2 changed files with 2 additions and 2 deletions

View File

@ -89,7 +89,7 @@ export class AnnotationDrawService {
highlight.setCustomData('skipped', annotationWrapper.isSkipped);
highlight.setCustomData('changeLog', annotationWrapper.isChangeLogEntry);
highlight.setCustomData('changeLogRemoved', annotationWrapper.isChangeLogRemoved);
highlight.setCustomData('redactionColor', this.getColor(activeViewer, 'skipped', 'skipped'));
highlight.setCustomData('redactionColor', this.getColor(activeViewer, 'redaction', 'redaction'));
highlight.setCustomData('annotationColor', this.getColor(activeViewer, annotationWrapper.superType, annotationWrapper.dictionary));
return highlight;

View File

@ -554,7 +554,7 @@ export class AppStateService {
hint: true
};
dictionaryData['redaction'] = {
hexColor: '#283241',
hexColor: '#cccccc',
type: 'redaction',
virtual: true
};