aboutsummaryrefslogtreecommitdiffstats
path: root/docs/Colour-codes.md
diff options
context:
space:
mode:
authorLMBishop <13875753+LMBishop@users.noreply.github.com>2023-07-05 20:54:36 +0100
committerLMBishop <13875753+LMBishop@users.noreply.github.com>2023-07-05 20:54:36 +0100
commit467715dcb3ee23e05e8fe445d9e2a2416a26a8e0 (patch)
treeeb1e61d15312f931b6f61d104dd63614a2620db4 /docs/Colour-codes.md
parent7e2e0f3c373c2108b8b3903675eac950b0e21307 (diff)
Migrate docs to GitHub pages
Diffstat (limited to 'docs/Colour-codes.md')
-rw-r--r--docs/Colour-codes.md51
1 files changed, 0 insertions, 51 deletions
diff --git a/docs/Colour-codes.md b/docs/Colour-codes.md
deleted file mode 100644
index aba83ee4..00000000
--- a/docs/Colour-codes.md
+++ /dev/null
@@ -1,51 +0,0 @@
-Jump to section:
-* [Using Colour Codes](#using-colour-codes)
-* [Using Hexadecimal Colour](#using-hexadecimal-colour)
-
-You can use colour codes anywhere the plugin accepts a message (plugin messages, display items, and in task configurations themselves).
-
-Your server version dictates which codes are allowed:
-| | Before 1.16 | 1.16+ |
-| ---- | ---- | ---- |
-| Colour Codes | ✔️ | ✔️ |
-| Hexadecimal | ❌ | ✔️ |
-
-## Colour codes
-The plugin will automatically translate colour codes from '&' to '§' for you.
-
-| Name | Chat Code | Hex Equivalent |
-| ---- | ---- | ---- |
-| Black | `&0` | #000000 |
-| Dark Blue | `&1` | #0000AA |
-| Dark Green | `&2` | #00AA00 |
-| Dark Aqua | `&3` | #00AAAA |
-| Dark Red | `&4` | #AA0000 |
-| Dark Purple | `&5` | #AA00AA |
-| Gold | `&6` | #FFAA00 |
-| Gray | `&7` | #AAAAAA |
-| Dark Gray | `&8` | #555555 |
-| Blue | `&9` | #5555FF |
-| Green | `&a` | #55FF55 |
-| Aqua | `&b` | #55FFFF |
-| Red | `&c` | #FF5555 |
-| Light Purple | `&d` | #FF55FF |
-| Yellow | `&e` | #FFFF55 |
-| White | `&f` | #FFFFFF |
-| Obfuscated | `&k` | - |
-| Bold | `&l` | - |
-| Strikethrough | `&m` | - |
-| Underline | `&n` | - |
-| Italic | `&o` | - |
-| Reset | `&r` | - |
-
-## Hexadecimal colour
-For compatible Minecraft versions, the plugin will also translate hex colour codes for you.
-
-You can include a hex colour code as you would with a normal colour code: `&#<hex colour code>`. **Note: the `#` is important and must be there.**
-
-For example, the following messages are identical:
-```
-&cThis is a red message.
-
-&#FF5555This is a red message.
-```