Jump to content

Recommended Posts

Posted

Just put [] put img in between then put the link. then [/] with img after the /

to get the link click properties on the picture then copy the adreess (Ctrl C when text is selceted) the past (Ctrl V)

Just use the code tags.

[img=(url)]

Posted

Well writing colorcodes with hex numbers is writing rgb with a different numeric alphabet than the one you're used to.

You must first know what the rgb palette is.

If you don't know what the rgb palette is, read below.

RGB is the blend of red, green and blue.

Each of the three letters represent a number from 0 to 255(or 0 to FF).

The higher number any of the letters contain, the more of the specific color is used. R 255, G 0, B 0 would be totally red, while R 0, G 255, B 0 would result in a totally green color.

You can mix all the three colors to get various colors.

Assuming you now know what the rgb(red, green and blue) palette is, I can write some numbertranslations for you.

1 = 1

2 = 2

......

9 = 9

10 = A

11 = B

12 = C

13 = D

14 = E

15 = F

16 = 10

17 = 11

18 = 12

19 = 13

...

If a totally red color is Red 255, Green 0 and Blue 0, it's written as

#FF0000 in hexnumbers

But how can FF turn into 255?

Looking at this, more detailed, map should give you a clue:

Hex | Column | Hex

number | fourth | third |second| first | number

1 | 4096 | 256 | 16 | 1 | 1

2 | 8192 | 512 | 32 | 2 | 2

3 | 12288 | 768 | 48 | 3 | 3

4 | 16384 | 1024 | 64 | 4 | 4

5 | 20480 | 1280 | 80 | 5 | 5

6 | 24576 | 1536 | 96 | 6 | 6

7 | 28672 | 1792 | 112 | 7 | 7

8 | 32768 | 2048 | 128 | 8 | 8

9 | 36864 | 2304 | 144 | 9 | 9

A | 40960 | 2560 | 160 | 10 | A

B | 45056 | 2816 | 176 | 11 | B

C | 49152 | 3072 | 192 | 12 | C

D | 53248 | 3328 | 208 | 13 | D

E | 57344 | 3584 | 224 | 14 | E

F | 61440 | 3840 | 240 | 15 | F

(this is going to look ugly when posted...)

*EDIT* Attempt at making the table look better

If you write FF, the first F represent 15, as you should know from the little table above this one.

However, the second F means 240...

So FF means 15+240. This equals 255.

You now ought to see how this works.

Let me do one more example:

BBB would turn into: 11 + 176 + 2816 which is 3003.

Remember, though, that you are only allowed to write numbers up to 255 in the rgb palette.

When writing rgbcolors with hexnumbers, you must format it like this:

#RRGGBB

^ ^ ^ ^

| | _ Read below...

| The amount of red (0-FF). Must always contain 2 numbers.

Must always be there...

Enjoy :)

Posted

Hmm... i just have some colour tables for that :P

I'm not that good in mixing colours, the last time i tried it out i'd gotten purple instead of grey :O

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.