style and compatibility update

This commit is contained in:
Patrick Jentsch
2024-05-21 10:29:12 +02:00
parent c68286e010
commit cbd0a41bce
91 changed files with 6718 additions and 538 deletions

View File

@ -0,0 +1,10 @@
$base-color-palette: (
"primary": #00426f,
"primary-light": #006fbc, // primary lightened by 15%
"primary-dark": #001523, // primary darkened by 15%
// "secondary": #1a5c89,
"secondary": #00426f,
"success": #4caf50,
"error": #f44336,
"link": #039be5
);

View File

@ -0,0 +1,10 @@
$corpus-status-color-palette: (
"UNPREPARED": #9e9e9e,
"QUEUED": #2196f3,
"BUILDING": #ffc107,
"BUILT": #4caf50,
"FAILED": #f44336,
"STARTING_ANALYSIS_SESSION": #2196f3,
"RUNNING_ANALYSIS_SESSION": #4caf50,
"CANCELING_ANALYSIS_SESSION": #ff5722
);

View File

@ -0,0 +1,10 @@
$job-status-color-palette: (
"INITIALIZING": #9e9e9e,
"SUBMITTED": #9e9e9e,
"QUEUED": #2196f3,
"RUNNING": #ffc107,
"CANCELING": #ff5722,
"CANCELED": #ff5722,
"COMPLETED": #4caf50,
"FAILED": #f44336
);

View File

@ -0,0 +1,25 @@
$ent-type-color-palette: (
"PERSON": #a6e22d,
"PER": #a6e22d,
"NORP": #ef60b4,
"FACILITY": #43c6fc,
"ORG": #43c6fc,
"GPE": #fd9720,
"LOC": #fd9720,
"PRODUCT": #a99dfb,
"MISC": #a99dfb,
"EVENT": #fc0,
"WORK_OF_ART": #fc0,
"LANGUAGE": #fc0,
"DATE": #2fbbab,
"TIME": #2fbbab,
"PERCENT": #bbb,
"MONEY": #bbb,
"QUANTITY": #bbb,
"ORDINAL": #bbb,
"CARDINAL": #bbb
);
$s-attr-color-palettes: (
"ent_type": $ent-type-color-palette
);

View File

@ -0,0 +1,38 @@
$file-setup-pipeline-color-palette: (
"base": #d5dc95,
"darken": #a1b300,
"lighten": #f2f3e1
);
$tesseract-ocr-pipeline-color-palette: (
"base": #a9d8c8,
"darken": #00a58b,
"lighten": #e7f4f1
);
$transkribus-htr-pipeline-color-palette: (
"base": #607d8b,
"darken": #37474f,
"lighten": #cfd8dc
);
$spacy-nlp-pipeline-color-palette: (
"base": #98acd2,
"darken": #0064a3,
"lighten": #e5e8f5
);
$corpus-analysis-color-palette: (
"base": #aa9cc9,
"darken": #6b3f89,
"lighten": #ebe8f6
);
$service-color-palettes: (
"file-setup-pipeline": $file-setup-pipeline-color-palette,
"tesseract-ocr-pipeline": $tesseract-ocr-pipeline-color-palette,
"transkribus-htr-pipeline": $transkribus-htr-pipeline-color-palette,
"spacy-nlp-pipeline": $spacy-nlp-pipeline-color-palette,
"corpus-analysis": $corpus-analysis-color-palette
);

View File

@ -0,0 +1,7 @@
$service-icon-letters: (
"file-setup-pipeline": "E",
"tesseract-ocr-pipeline": "F",
"transkribus-htr-pipeline": "F",
"spacy-nlp-pipeline": "G",
"corpus-analysis": "H"
);

View File

@ -0,0 +1,22 @@
$spacing-shortcuts: (
"margin": "m",
"padding": "p"
);
$spacing-directions: (
"top": "t",
"right": "r",
"bottom": "b",
"left": "l"
);
$spacing-values: (
"0": 0,
"1": 0.25rem,
"2": 0.5rem,
"3": 0.75rem,
"4": 1rem,
"5": 1.5rem,
"6": 3rem,
"auto": auto
);