Added support for named colors, e.g. "white" and "black";

Added missing keys to locale.

git-svn-id: svn://svn.code.sf.net/p/magicseteditor/code/trunk@716 0fc631ac-6414-0410-93d0-97cfa31319b6
This commit is contained in:
twanvl
2007-09-20 18:16:10 +00:00
parent 6f899db4d9
commit 1f3f4e01fe
5 changed files with 27 additions and 11 deletions
+6
View File
@@ -5,6 +5,12 @@ In files and scritps a color can be represented as
<pre>rgb(<i>red_component</i>, <i>green_component</i>, <i>blue_component</i>)</pre>
where red_component, green_component and blue_component are numbers between 0 and 255 (inclusive).
--Named colors--
MSE also supports named colors, for instance @"white"@ is the same as @rgb(255,255,255)@.
For a full list of supported colors, see [[http://www.wxwidgets.org/manuals/stable/wx_wxcolourdatabase.html|the wxWidgets documentation]].
In scripts named colors are represented as [[type:string]]s.
--Examples--
For example:
! Code Represents <<<