소스 검색

Document the support for transparent RGB colors in BBCode

Hugo Locurcio 8 년 전
부모
커밋
ada398ba5e
1개의 변경된 파일5개의 추가작업 그리고 2개의 파일을 삭제
  1. 5 2
      learning/features/gui/bbcode_in_richtextlabel.rst

+ 5 - 2
learning/features/gui/bbcode_in_richtextlabel.rst

@@ -76,5 +76,8 @@ List of valid color names for the [color=<name>] tag:
 
 Hexadecimal color codes
 ~~~~~~~~~~~~~~~~~~~~~~~
- 
-Any valid 6-digit hexadecimal code is supported, e.g. ``[color=#ffffff]white[/color]``.
+
+For opaque RGB colors, any valid 6-digit hexadecimal code is supported, e.g. ``[color=#ffffff]white[/color]``.
+
+For transparent RGB colors, any 8-digit hexadecimal code can be used, e.g. ``[color=#88ffffff]translucent white[/color]``.
+In this case, note that the alpha channel is the **first** component of the color code, not the last one.