Compare commits

...

2 Commits

Author SHA1 Message Date
Sven Vogel edf2e8a42f fix: convert CMYK branding color to RGB
Build'n check / run-ci-linux (push) Has been skipped Details
Build'n check / run-ci-linux (pull_request) Successful in 2m19s Details
Fixes incompatability with PDF/A format
2024-11-27 14:16:23 +00:00
Sven Vogel ac1968bb12 fix: add missing config reference when using university name in prerelease note (#114)
Create Release Commit / prepare (push) Has been skipped Details
Reviewed-on: #114
Co-authored-by: servostar <sven.vogel123@web.de>
Co-committed-by: servostar <sven.vogel123@web.de>
2024-11-27 13:39:00 +00:00
2 changed files with 13 additions and 13 deletions

View File

@ -3,16 +3,16 @@
// https://brand.abb/portal/en/branding-principles/basic-brand-elements/color // https://brand.abb/portal/en/branding-principles/basic-brand-elements/color
// ABB branding colors // ABB branding colors
#let ABB-RED = cmyk(0%, 100%, 95%, 0%) #let ABB-RED = rgb(255, 0, 13)
#let ABB-BLACK = cmyk(0%, 0%, 0%, 100%) #let ABB-BLACK = rgb(0, 0, 0)
#let ABB-GRAY-01 = cmyk(0%, 0%, 0%, 90%) #let ABB-GRAY-01 = rgb(25, 25, 25)
#let ABB-GRAY-02 = cmyk(0%, 0%, 0%, 75%) #let ABB-GRAY-02 = rgb(64, 64, 64)
#let ABB-GRAY-03 = cmyk(0%, 0%, 0%, 55%) #let ABB-GRAY-03 = rgb(115, 115, 115)
#let ABB-GRAY-04 = cmyk(0%, 0%, 0%, 35%) #let ABB-GRAY-04 = rgb(166, 166, 166)
#let ABB-GRAY-05 = cmyk(0%, 0%, 0%, 15%) #let ABB-GRAY-05 = rgb(217, 217, 217)
#let ABB-GRAY-06 = cmyk(0%, 0%, 0%, 5%) #let ABB-GRAY-06 = rgb(242, 242, 242)
#let ABB-WHITE = cmyk(0%, 0%, 0%, 0%) #let ABB-WHITE = rgb(255, 255, 255)
// ABB branding functinal colors // ABB branding functinal colors
#let ABB-BLUE = cmyk(100%, 53%, 2%, 16%) #let ABB-BLUE = rgb(0, 101, 210)
#let ABB-GREEN = cmyk(91%, 4%, 100%, 25%) #let ABB-GREEN = rgb(17, 184, 0)
#let ABB-YELLOW = cmyk(0%, 9%, 100%, 0%) #let ABB-YELLOW = rgb(255, 232, 0)

View File

@ -47,7 +47,7 @@
if text.lang == "de" [ if text.lang == "de" [
handelt es sich _nicht_ um die fertige Fassung. Das Dokument kann Inhaltliche-, Grammatikalische- sowie Format-Fehler enthalten. Das Dokument ist im Rahmen der Aufgabenstellung von Seiten der #university.name nicht zur Bewertung freigegeben und ein anderer Verwendungszweck als eine Vorschau ist nicht gestattet. handelt es sich _nicht_ um die fertige Fassung. Das Dokument kann Inhaltliche-, Grammatikalische- sowie Format-Fehler enthalten. Das Dokument ist im Rahmen der Aufgabenstellung von Seiten der #university.name nicht zur Bewertung freigegeben und ein anderer Verwendungszweck als eine Vorschau ist nicht gestattet.
] else if text.lang == "en" [ ] else if text.lang == "en" [
is not the final version. The document may contain errors in content, grammar and formatting. The document may not be released for evaluation to #university.name as part of the assignment, and any use other than a preview is not permitted. is not the final version. The document may contain errors in content, grammar and formatting. The document may not be released for evaluation to #config.university.name as part of the assignment, and any use other than a preview is not permitted.
] ]
} }
) )