Black.CONFIG 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. # sh syntax please
  2. #
  3. # colors
  4. # gradients start with COLORHI and end with COLORLO
  5. #
  6. # inner cursor colors, #999999 and #555555 in source image
  7. CURSORCOLORHI="#333333"
  8. CURSORCOLORLO="#000000"
  9. # shadow color, processed by ImageMagick
  10. SHADOWCOLOR="#000000"
  11. # the outline color, #000000 in source image
  12. OUTLINECOLOR="#ffffff"
  13. # the hair color (text, crosshair), #010101 in source image
  14. HAIR="#660000"
  15. # the hilight colors, #999933 and #666600 in source image
  16. HILIGHTHI="#777700"
  17. HILIGHTLO="#444400"
  18. # cursor and shadow transparancy
  19. # 0=opague, 1=transparent
  20. CURSORTRANS=0.3
  21. SHADOWTRANS=0.7
  22. # the outline width in pixel
  23. OUTLINE=30
  24. #
  25. # sizes to render (height=width)
  26. #
  27. # Use the SIZES array to render on size only, or multiple
  28. # sizes to be rendered to individual cursors or multiple
  29. # sizes into one cursor. See the MULTISIZE build flag
  30. # in README, INSTALL and install_all.
  31. #
  32. # SIZES=( Huge=64 Large=48 Regular=40 Small=32 )
  33. # SIZES=( Large=48 )
  34. #
  35. export SIZES=( Huge=64 Large=48 Regular=40 Small=32 )
  36. #
  37. # variants to additionally render
  38. #
  39. INCLUDE=( Opaque Slim Opaque-Slim )