aquaballoon

Hex Opacity Values

Oct 10th, 2014
222
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.54 KB | None | 0 0
  1. #AARRGGBB
  2. AA is the alpha channel
  3. RR is the red channel
  4. GG is the green channel  
  5. BB is the blue channel.
  6.  
  7. 0 (fully transparent) to 255 (completely opaque - dark)
  8. 20% Opacity => 255 * 0.2 = 51 ==> in hex 33
  9.  
  10. 100%#FF (Dark)  - # -> 0x
  11. 95%#F2
  12. 90%#E6
  13. 85%#D9
  14. 80%#CC
  15. 75%#BF
  16. 70%#B3
  17. 65%#A6
  18. 60%#99
  19. 55%#8C
  20. 50%#80
  21. 45%#73
  22. 40%#66
  23. 35%#59
  24. 30%#4D
  25. 25%#40
  26. 20%#33 - 255 * 0.2 = 51 ==> in hex 33
  27. 15%#26
  28. 10%#1A
  29. 5%#0D
  30. 0%#00 (Transparent)
Advertisement
Add Comment
Please, Sign In to add comment