diff options
| author | Laurenz <laurmaedje@gmail.com> | 2021-06-30 22:32:24 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-06-30 22:32:24 +0200 |
| commit | 17e89468847735df10381c47c46c7d82d33cc463 (patch) | |
| tree | b0ce55f7d62aac399717aac3ab5a76c981c66f65 /tests/typ/insert/rect.typ | |
| parent | 911b5818344e85a58da9db895a333d22484b7ae7 (diff) | |
Remove color literals (#39)
Diffstat (limited to 'tests/typ/insert/rect.typ')
| -rw-r--r-- | tests/typ/insert/rect.typ | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/tests/typ/insert/rect.typ b/tests/typ/insert/rect.typ index 93df071b..7f6bb899 100644 --- a/tests/typ/insert/rect.typ +++ b/tests/typ/insert/rect.typ @@ -9,19 +9,19 @@ #rect(fill: conifer)[Textbox] // Empty with fixed width and height. -#rect(width: 3cm, height: 12pt, fill: #CB4CED) +#rect(width: 3cm, height: 12pt, fill: rgb("CB4CED")) // Fixed width, text height. -#rect(width: 2cm, fill: #9650D6, pad(5pt)[Fixed and padded]) +#rect(width: 2cm, fill: rgb("9650D6"), pad(5pt)[Fixed and padded]) // Page width, fixed height. -#rect(height: 1cm, width: 100%, fill: #734CED)[Topleft] +#rect(height: 1cm, width: 100%, fill: rgb("734CED"))[Topleft] // Not visible, but creates a gap between the boxes above and below // due to line spacing. -#rect(width: 1in, fill: #ff0000) +#rect(width: 1in, fill: rgb("ff0000")) // These are in a row! -#rect(width: 0.5in, height: 10pt, fill: #D6CD67) -#rect(width: 0.5in, height: 10pt, fill: #EDD466) -#rect(width: 0.5in, height: 10pt, fill: #E3BE62) +#rect(width: 0.5in, height: 10pt, fill: rgb("D6CD67")) +#rect(width: 0.5in, height: 10pt, fill: rgb("EDD466")) +#rect(width: 0.5in, height: 10pt, fill: rgb("E3BE62")) |
