updated to darker color

This commit is contained in:
christianbraeunlich 2022-03-26 09:01:43 +01:00
parent bd7ea0e118
commit ccdaa1e08e
20 changed files with 57 additions and 57 deletions

View file

@ -16,37 +16,37 @@ Blanks, periods, and other characters (such as parentheses) that would make quot
If a variable is a compound of two or more words or abbreviations, each word or abbreviation should begin with a capital letter.
## <span style="color:red">Bad code</span>
## <span style="color:FireBrick">Bad code</span>
```al
WIPBuffer: Record "Job WIP Buffer"
```
## <span style="color:lime">Good code</span>
## <span style="color:ForestGreen">Good code</span>
```al
JobWIPBuffer: Record "Job WIP Buffer"
```
## <span style="color:red">Bad code</span>
## <span style="color:FireBrick">Bad code</span>
```al
Postline: Codeunit "Gen. Jnl.-Post Line";
```
## <span style="color:lime">Good code</span>
## <span style="color:ForestGreen">Good code</span>
```al
GenJnlPostLine: Codeunit "Gen. Jnl.-Post Line";
```
## <span style="color:red">Bad code</span>
## <span style="color:FireBrick">Bad code</span>
```al
"Amount (LCY)": Decimal;
```
## <span style="color:lime">Good code</span>
## <span style="color:ForestGreen">Good code</span>
```al
AmountLCY: Decimal;