diff options
author | Lars Müller <34514239+appgurueu@users.noreply.github.com> | 2022-04-21 12:39:39 +0200 |
---|---|---|
committer | sfan5 <sfan5@live.de> | 2022-04-21 21:45:20 +0200 |
commit | 583257f093b958be7e4e82803f53550e4a3beb8a (patch) | |
tree | caa0715208e2861936696c8f5564f008d9e66b1a /doc | |
parent | 7cea688a1c463c5e8caa28bbdb588a6b497a5d7d (diff) | |
download | minetest-583257f093b958be7e4e82803f53550e4a3beb8a.tar.gz minetest-583257f093b958be7e4e82803f53550e4a3beb8a.tar.bz2 minetest-583257f093b958be7e4e82803f53550e4a3beb8a.zip |
Update docs to reference CSS Color Module Level 3
as the named color "rebeccapurple" is unavailable, Level 4 clearly isn't supported; the link should not point to a dev version of the spec either
Diffstat (limited to 'doc')
-rw-r--r-- | doc/lua_api.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/lua_api.txt b/doc/lua_api.txt index aa58bd48e..a63e7f856 100644 --- a/doc/lua_api.txt +++ b/doc/lua_api.txt @@ -3248,7 +3248,7 @@ Colors `#RRGGBBAA` defines a color in hexadecimal format and alpha channel. Named colors are also supported and are equivalent to -[CSS Color Module Level 4](http://dev.w3.org/csswg/css-color/#named-colors). +[CSS Color Module Level 3](https://www.w3.org/TR/css-color-3/). To specify the value of the alpha channel, append `#A` or `#AA` to the end of the color name (e.g. `colorname#08`). |