Custom.CONFIG 982 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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 svg
  7. CURSORCOLORHI="#ffffff"
  8. CURSORCOLORLO="#eeeeee"
  9. # shadow color, #111111 in source svg
  10. SHADOWCOLOR="#000000"
  11. # the outline color, #000000 in source svg
  12. OUTLINECOLOR="#000000"
  13. # the hair color (text, crosshair), #010101 in source svg
  14. HAIR="#000000"
  15. # the hilight colors, #999933 and #666600 in source svg
  16. HILIGHTHI="#ffff33"
  17. HILIGHTLO="#cccc00"
  18. #
  19. # transparency
  20. #
  21. # cursor and shadow transparancy
  22. # 0=opague, 1=transparent
  23. CURSORTRANS=0.3
  24. SHADOWTRANS=0.7
  25. # the outline width in pixel in 1000x1000 source svg
  26. OUTLINE=30
  27. #
  28. # sizes to render (height=width)
  29. #
  30. # Use the SIZES array to render on size only, or multiple
  31. # sizes to be rendered to individual cursors or multiple
  32. # sizes into one cursor. See the MULTISIZE build flag
  33. # in README, INSTALL and install_all.
  34. #
  35. # SIZES=( Huge=64 Large=48 Regular=40 Small=32 )
  36. SIZES=( Large=48 )